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