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

true, therefore Foo

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

false, therefore Bar

`); } };