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-containing-if/_config.js

36 lines
565 B

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