export default { get props() { return { x: true }; }, html: `

true, therefore Foo

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

false, therefore Bar

` ); } };