export default {
ssrHtml: `
Hello undefined!
`,
html: `
Hello Harry!
`,
async test({ assert, component, target, window }) {
const select = target.querySelector('select');
const options = [...target.querySelectorAll('option')];
assert.deepEqual(options, [...select.options]);
assert.equal(component.name, 'Harry');
const change = new window.Event('change');
options[1].selected = true;
await select.dispatchEvent(change);
assert.equal(component.name, 'World');
assert.htmlEqual(
target.innerHTML,
`
Hello World!
`
);
}
};