9 lines
219 B

export default {
html: `<div><h3>Called 1 times.</h3></div>`,
test({ assert, component, target }) {
component.foo = component.foo;
assert.htmlEqual(target.innerHTML, `<div><h3>Called 1 times.</h3></div>`);
}
};