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/each-block-function/_config.js

19 lines
246 B

export default {
html: `
<p>1, 2, 3</p>
<p>2, 4, 6</p>
<p>3, 6, 9</p>
`,
test({ assert, component, target }) {
component.numbers = [4, 5];
assert.htmlEqual(
target.innerHTML,
`
<p>16, 20</p>
<p>20, 25</p>
`
);
}
};