export default { props: { foo: 42 }, html: '

foo: 42

', test({ assert, component, target }) { component.foo = 99; assert.equal( target.innerHTML, '

foo: 99

' ); } };