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/spread-component-with-bind/_config.js

24 lines
361 B

export default {
html: `
<p>foo</p>
<input>
`,
ssrHtml: `
<p>foo</p>
<input value=foo>
`,
async test({ assert, component, target, window }) {
const input = target.querySelector('input');
input.value = 'bar';
await input.dispatchEvent(new window.Event('input'));
assert.htmlEqual(target.innerHTML, `
<p>bar</p>
<input>
`);
}
};