mirror of https://github.com/sveltejs/svelte
24 lines
346 B
24 lines
346 B
export default {
|
|
html: `
|
|
<p>foo</p>
|
|
<input>
|
|
`,
|
|
|
|
ssrHtml: `
|
|
<p>foo</p>
|
|
<input value=foo>
|
|
`,
|
|
|
|
test (assert, component, target, window) {
|
|
const input = target.querySelector('input');
|
|
|
|
input.value = 'bar';
|
|
input.dispatchEvent(new window.Event('input'));
|
|
|
|
assert.htmlEqual(target.innerHTML, `
|
|
<p>bar</p>
|
|
<input>
|
|
`);
|
|
}
|
|
};
|