Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to use fakeDomSource? #316

Open
mspoulsen opened this issue Dec 17, 2018 · 0 comments
Open

How to use fakeDomSource? #316

mspoulsen opened this issue Dec 17, 2018 · 0 comments

Comments

@mspoulsen
Copy link

Hi,

I am trying to use fakeDomSource to test UI components. But I am not able to make it work. I hope someone can help me.

I have the following code:

import {
  events,
  FakeConfig,
  fakeDomSource,
  query
  } from '@motorcycle/dom';
import { now, observe } from '@motorcycle/stream';


const fakeConfig: FakeConfig<Element, number> = 
{ 'foo': {
    'click': now(1)
  }
}

const dom = fakeDomSource(fakeConfig)
const source = query(`foo`, dom)
const event$ = events('click', source)

observe(
  event => {
    console.log(event)
  },
  event$
)

I would expect event$ to emit here, but it doesn't. What am I doing wrong?

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant