export default {
props: {
size: 1
},
html: '
This is h1 tag
',
test({ assert, component, target }) {
const h1 = target.firstChild;
component.size = 2;
assert.htmlEqual(
target.innerHTML,
`
This is h2 tag
`
);
const h2 = target.firstChild;
assert.notEqual(h1, h2);
}
};