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