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