11 lines
160 B

export default {
html: `b baz`,
test({ assert, component, target }) {
component.foo = true;
assert.htmlEqual(
target.innerHTML,
`a baz`
);
},
};