export default { props: { a: [{ id: 'foo' }, { id: 'bar' }, { id: 'baz' }] }, html: ` foobarbaz `, test({ assert, component, target }) { component.a = [ { id: 'yep' }, { id: 'nope' } ]; assert.htmlEqual(target.innerHTML, ` yepnope `); } };