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

promise array is empty

` ); } };