export default { html: `
one
`, preserveIdentifiers: true, test(assert, component, target) { const { tagList } = component.get(); tagList.push('two'); component.set({ tagList }); assert.htmlEqual(target.innerHTML, `
one two
`); } };