export default { html: `
`, get props() { return { things: [ { a: 1, b: 2 }, { a: 3, b: 4 } ] }; }, test({ assert, component, target }) { const { things } = component; component.things = things.reverse(); assert.htmlEqual( target.innerHTML, ` ` ); } };