export default {
html: `
Hello
`,
ssrHtml: `
Hello
`,
async test({ assert, target, window }) {
const input = target.querySelector('input');
input.value = 'abcd';
await input.dispatchEvent(new window.Event('input'));
assert.htmlEqual(
target.innerHTML,
`
abcd
`
);
}
};