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.
svelte/test/runtime/samples/component-binding-each-object/_config.js

21 lines
335 B

export default {
props: {
a: [{ id: 'foo' }, { id: 'bar' }, { id: 'baz' }]
},
html: `
<span>foo</span><span>bar</span><span>baz</span>
`,
test({ assert, component, target }) {
component.a = [
{ id: 'yep' },
{ id: 'nope' }
];
assert.htmlEqual(target.innerHTML, `
<span>yep</span><span>nope</span>
`);
}
};