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/packages/svelte/tests/runtime-legacy/samples/await-then-catch-if/_config.js

52 lines
716 B

import { test } from '../../test';
/** @type {(value: any) => void} */
let fulfil;
const thePromise = new Promise((f) => {
fulfil = f;
});
export default test({
get props() {
return { show: true, thePromise };
},
html: `
<p>loading...</p>
`,
test({ assert, component, target }) {
fulfil(42);
return thePromise.then(() => {
assert.htmlEqual(
target.innerHTML,
`
<p>the value is 42</p>
`
);
component.show = false;
assert.htmlEqual(
target.innerHTML,
`
<p>Else</p>
`
);
component.show = true;
return thePromise.then(() => {
assert.htmlEqual(
target.innerHTML,
`
<p>the value is 42</p>
`
);
});
});
}
});