export default { html: `
hello John
hello Jill
`, test({ assert, component, target }) { component.names = component.names.reverse(); assert.htmlEqual( target.innerHTML, `
hello Jill
hello John
` ); } };