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-with-iterable/_config.js

30 lines
338 B

export default {
html: `
<p>1</p>
<p>2</p>
<p>1 0</p>
<p>2 1</p>
<p>1 0</p>
<p>2 1</p>
`,
test({ assert, component, target }) {
component.numbers = new Set([2, 3]);
assert.htmlEqual(
target.innerHTML,
`
<p>2</p>
<p>3</p>
<p>2 0</p>
<p>3 1</p>
<p>2 0</p>
<p>3 1</p>
`
);
}
};