mirror of https://github.com/sveltejs/svelte
25 lines
375 B
25 lines
375 B
export default {
|
|
data: {
|
|
a: [{ id: 'foo' }, { id: 'bar' }, { id: 'baz' }]
|
|
},
|
|
|
|
html: `
|
|
<span>foo</span><span>bar</span><span>baz</span>
|
|
`,
|
|
|
|
test ( assert, component, target ) {
|
|
component.set({
|
|
a: [
|
|
{ id: 'yep' },
|
|
{ id: 'nope' }
|
|
]
|
|
});
|
|
|
|
assert.htmlEqual( target.innerHTML, `
|
|
<span>yep</span><span>nope</span>
|
|
` );
|
|
|
|
component.destroy();
|
|
}
|
|
};
|