export default { props: { ones: [{ text: '1' }], twos: [{ text: '2' }], }, html: `
1
2
`, test({ assert, component, target }) { component.ones = [{ text: '11' }]; assert.htmlEqual(target.innerHTML, `
11
2
`); }, };