22 lines
377 B

export default {
skip_if_ssr: true,
html: `
<div>The text is hello</div>
<h1>hello</h1>
`,
test({ assert, component, target }) {
component.visible = false;
assert.htmlEqual(target.innerHTML, `
<div>The text is missing</div>
`);
component.visible = true;
assert.htmlEqual(target.innerHTML, `
<div>The text is hello</div>
<h1>hello</h1>
`);
}
};