let fulfil; const thePromise = new Promise((f) => { fulfil = f; }); export default { get props() { return { thePromise }; }, html: `

loading...

true!

`, test({ assert, target }) { fulfil(42); return thePromise.then(() => { assert.htmlEqual( target.innerHTML, `

the value is 42

true!

` ); }); } };