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