export default { data: { things: [0, 0, 0, 0, 0] }, html: `

0

1

2

3

4

`, test(assert, component, target) { component.set({ things: [0, 0, 0] }); assert.htmlEqual(target.innerHTML, `

0

1

2

`); } };