export default { props: { x: 1 }, html: `

Foo 1

`, test({ assert, component, target }) { component.x = 2; assert.htmlEqual( target.innerHTML, `

Foo 2

` ); } };