export default { props: { foo: ['a'], bar: ['c'] }, html: ` a c `, test({ assert, component, target }) { component.foo = ['a', 'b']; assert.htmlEqual(target.innerHTML, ` a b c `); } };