let fulfil; const thePromise = new Promise(f => { fulfil = f; }); export default { props: { thePromise }, html: ` loading... `, async test({ assert, component, target }) { fulfil([]); await thePromise; assert.htmlEqual(target.innerHTML, `
promise array is empty
`); } };