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

hello!

hello!

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

goodbye!

goodbye!

`); } };