We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
I would expect event$ to emit here, but it doesn't. What am I doing wrong?
Thanks!
The text was updated successfully, but these errors were encountered: