export default { props: { things: [1, 2, 3] }, html: `
1 2 3
`, test({ assert, component, target }) { component.things = [1, 2, 3, 4]; assert.htmlEqual(target.innerHTML, `
1 2 3 4
`); } };