mirror of https://github.com/sveltejs/svelte
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.
65 lines
1.5 KiB
65 lines
1.5 KiB
export default {
|
|
data: {
|
|
items: [
|
|
{ description: 'one', completed: true },
|
|
{ description: 'two', completed: false },
|
|
{ description: 'three', completed: false }
|
|
]
|
|
},
|
|
|
|
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>
|
|
<p>1 completed</p>
|
|
`,
|
|
|
|
ssrHtml: `
|
|
<div>
|
|
<input type="checkbox" checked><p>one</p>
|
|
</div>
|
|
<div>
|
|
<input type="checkbox"><p>two</p>
|
|
</div>
|
|
<div>
|
|
<input type="checkbox"><p>three</p>
|
|
</div>
|
|
<p>1 completed</p>
|
|
`,
|
|
|
|
test ( assert, component, target, window ) {
|
|
const inputs = [ ...target.querySelectorAll( 'input' ) ];
|
|
|
|
assert.ok( inputs[0].checked );
|
|
assert.ok( !inputs[1].checked );
|
|
assert.ok( !inputs[2].checked );
|
|
|
|
const event = new window.Event( 'change' );
|
|
|
|
inputs[1].checked = true;
|
|
inputs[1].dispatchEvent( event );
|
|
|
|
assert.equal( component.get().numCompleted, 2 );
|
|
assert.htmlEqual( target.innerHTML, `
|
|
<div><input type="checkbox"><p>one</p></div><div><input type="checkbox"><p>two</p></div><div><input type="checkbox"><p>three</p></div>
|
|
<p>2 completed</p>
|
|
` );
|
|
|
|
const items = component.get().items;
|
|
items[2].completed = true;
|
|
|
|
component.set({ items });
|
|
assert.ok( inputs[2].checked );
|
|
assert.htmlEqual( target.innerHTML, `
|
|
<div><input type="checkbox"><p>one</p></div><div><input type="checkbox"><p>two</p></div><div><input type="checkbox"><p>three</p></div>
|
|
<p>3 completed</p>
|
|
` );
|
|
}
|
|
};
|