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

Foo

` ); } };