export default {
get props() {
return { x: true };
},
html: `
Foo
This is default slot
This is other slot
`,
test({ assert, component, target }) {
component.tag = 'h2';
assert.htmlEqual(
target.innerHTML,
`
Foo
This is default slot
This is other slot
`
);
}
};