export default { 'skip-ssr': true, data: { value: 'hello!' }, html: `

hello!

hello!

`, test(assert, component, target) { component.set({ value: 'goodbye!' }); assert.htmlEqual(target.innerHTML, `

goodbye!

goodbye!

`); } };