export default { props: { foo: true, bar: true }, html: '
', test({ assert, component, target }) { component.foo = false; assert.htmlEqual( target.innerHTML, `
` ); } };