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