export default { html: `
{"value":"x"}
`, async test({ assert, target, window }) { const button = target.querySelectorAll('button')[1]; await button.dispatchEvent(new window.Event('click')); assert.htmlEqual(target.innerHTML, `{"value":"x"}
{"value":"x"}
`); } };