You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/await-then-catch-order/_config.js

29 lines
368 B

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