export default {
html: `
count in default slot: 0
count in foo slot: 0
count in bar slot: 0
`,
async test({ assert, target, window }) {
const button = target.querySelector('button');
await button.dispatchEvent(new window.MouseEvent('click'));
assert.htmlEqual(
target.innerHTML,
`
count in default slot: 1
count in foo slot: 1
count in bar slot: 1
`
);
}
};