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