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-in-rea.../_config.js

35 lines
553 B

import { writable } from 'svelte/store';
export default {
get props() {
return { count: writable(0) };
},
html: `
<button>double 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>double 2</button>
`
);
await component.count.set(42);
assert.htmlEqual(
target.innerHTML,
`
<button>double 84</button>
`
);
}
};