You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/store-auto-subscribe-implicit/_config.js

35 lines
550 B

import { writable } from 'svelte/store';
export default {
get props() {
return { count: writable(0) };
},
html: `
<button>count 0</button>
`,
async test({ assert, component, target, window }) {
const button = target.querySelector('button');
const click = new window.MouseEvent('click');
await button.dispatchEvent(click);
assert.htmlEqual(
target.innerHTML,
`
<button>count 1</button>
`
);
await component.count.set(42);
assert.htmlEqual(
target.innerHTML,
`
<button>count 42</button>
`
);
}
};