let fulfil; let thePromise = new Promise(f => { fulfil = f; }); export default { props: { thePromise }, html: `
loading...
true!
`, test({ assert, component, target }) { fulfil(42); return thePromise .then(() => { assert.htmlEqual(target.innerHTML, `the value is 42
true!
`); }); } };