export default {
get props() {
return { x: true };
},
html: `
Foo
what goes up must come down
element
you're it
neither foo nor bar
text
a
b
c
baz
`,
test({ assert, component, target }) {
component.x = false;
assert.htmlEqual(
target.innerHTML,
`
Bar
element
you're it
neither foo nor bar
text
a
b
c
baz
what goes up must come down
`
);
}
};