export default { skip_if_ssr: true, props: { value: 'hello!' }, html: `

hello!

hello!

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

goodbye!

goodbye!

`); } };