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/component-binding-blowback-b/_config.js

34 lines
612 B

export default {
skip_if_ssr: true,
props: {
count: 3
7 years ago
},
html: `
<input type='number'>
<ol>
<li>id-0: value is zero</li>
<li>id-1: value is one</li>
<li>id-2: value is two</li>
</ol>
`,
async test({ assert, component, target, window }) {
const input = target.querySelector('input');
input.value = 4;
await input.dispatchEvent(new window.Event('input'));
7 years ago
assert.htmlEqual(target.innerHTML, `
<input type='number'>
7 years ago
<ol>
<li>id-0: value is zero</li>
<li>id-1: value is one</li>
<li>id-2: value is two</li>
<li>id-3: value is three</li>
</ol>
`);
}
};