mirror of https://github.com/sveltejs/svelte
44 lines
688 B
44 lines
688 B
export default {
|
|
get props() {
|
|
return { foo: true };
|
|
},
|
|
|
|
html: `
|
|
<input type="checkbox">
|
|
<p>true</p>
|
|
`,
|
|
|
|
ssrHtml: `
|
|
<input type="checkbox" checked>
|
|
<p>true</p>
|
|
`,
|
|
|
|
async test({ assert, component, target, window }) {
|
|
const input = target.querySelector('input');
|
|
assert.equal(input.checked, true);
|
|
|
|
const event = new window.Event('change');
|
|
|
|
input.checked = false;
|
|
await input.dispatchEvent(event);
|
|
|
|
assert.htmlEqual(
|
|
target.innerHTML,
|
|
`
|
|
<input type="checkbox">
|
|
<p>false</p>
|
|
`
|
|
);
|
|
|
|
component.foo = true;
|
|
assert.equal(input.checked, true);
|
|
assert.htmlEqual(
|
|
target.innerHTML,
|
|
`
|
|
<input type="checkbox">
|
|
<p>true</p>
|
|
`
|
|
);
|
|
}
|
|
};
|