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

Foo

` ); } };