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-assignment-updates-re.../_config.js

47 lines
664 B

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