export default { get props() { return { things: [0, 0, 0, 0, 0] }; }, html: `

0

1

2

3

4

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

0

1

2

` ); } };