mirror of https://github.com/sveltejs/svelte
await...then shorthand - fixes #957
parent
81f449093d
commit
b83afb0528
@ -0,0 +1,45 @@
|
|||||||
|
let fulfil;
|
||||||
|
|
||||||
|
let thePromise = new Promise(f => {
|
||||||
|
fulfil = f;
|
||||||
|
});
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data: {
|
||||||
|
thePromise
|
||||||
|
},
|
||||||
|
|
||||||
|
html: ``,
|
||||||
|
|
||||||
|
test(assert, component, target) {
|
||||||
|
fulfil(42);
|
||||||
|
|
||||||
|
return thePromise
|
||||||
|
.then(() => {
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<p>the value is 42</p>
|
||||||
|
`);
|
||||||
|
|
||||||
|
let reject;
|
||||||
|
|
||||||
|
thePromise = new Promise((f, r) => {
|
||||||
|
reject = r;
|
||||||
|
});
|
||||||
|
|
||||||
|
component.set({
|
||||||
|
thePromise
|
||||||
|
});
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, ``);
|
||||||
|
|
||||||
|
reject(new Error('something broke'));
|
||||||
|
|
||||||
|
return thePromise.catch(() => {});
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<p>oh no! something broke</p>
|
||||||
|
`);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,5 @@
|
|||||||
|
{{#await thePromise then theValue}}
|
||||||
|
<p>the value is {{theValue}}</p>
|
||||||
|
{{catch theError}}
|
||||||
|
<p>oh no! {{theError.message}}</p>
|
||||||
|
{{/await}}
|
Loading…
Reference in new issue