export default { props: { foo: true, bar: false }, html: `

foo

not bar

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

not foo

not bar

` ); component.bar = true; assert.htmlEqual( target.innerHTML, `

not foo

bar

` ); component.foo = true; assert.htmlEqual( target.innerHTML, `

foo

bar

` ); } };