mirror of https://github.com/sveltejs/svelte
51 lines
970 B
51 lines
970 B
export default {
|
|
html: `
|
|
<div>
|
|
<input type="checkbox"><p>one</p>
|
|
</div>
|
|
<div>
|
|
<input type="checkbox"><p>two</p>
|
|
</div>
|
|
<div>
|
|
<input type="checkbox"><p>three</p>
|
|
</div>
|
|
`,
|
|
|
|
ssrHtml: `
|
|
<div>
|
|
<input type="checkbox"><p>one</p>
|
|
</div>
|
|
<div>
|
|
<input type="checkbox"><p>two</p>
|
|
</div>
|
|
<div>
|
|
<input type="checkbox"><p>three</p>
|
|
</div>
|
|
`,
|
|
|
|
async test({ assert, component, target, window }) {
|
|
const inputs = [ ...target.querySelectorAll('input') ];
|
|
|
|
const event = new window.Event('change');
|
|
|
|
inputs[1].checked = true;
|
|
await inputs[1].dispatchEvent(event);
|
|
|
|
await component.clear();
|
|
|
|
assert.htmlEqual(target.innerHTML, `
|
|
<div><input type="checkbox"><p>one</p></div>
|
|
<div><input type="checkbox"><p>three</p></div>
|
|
`);
|
|
|
|
inputs[1].checked = true;
|
|
await inputs[1].dispatchEvent(event);
|
|
|
|
await component.clear();
|
|
|
|
assert.htmlEqual(target.innerHTML, `
|
|
<div><input type="checkbox"><p>one</p></div>
|
|
`);
|
|
}
|
|
};
|