export default { props: { foo: 'hello' }, html: "hello", test({ assert, component, target }) { component.foo = 'goodbye'; assert.htmlEqual(target.innerHTML, ` goodbye `); } };