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

true, therefore Foo

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

false, therefore Bar

` ); } };