export default { html:'
same text
', async test({ assert, target }) { await new Promise(f => setTimeout(f, 10)); assert.htmlEqual(target.innerHTML, `
same text text
`); } };