export default {
props: {
tag: 'div',
text: 'Foo'
},
html: '
Foo
',
test({ assert, component, target }) {
const div = target.firstChild;
component.tag = 'nav';
component.text = 'Bar';
assert.htmlEqual(target.innerHTML, `
`);
const h1 = target.firstChild;
assert.notEqual(div, h1);
}
};