mirror of https://github.com/sveltejs/svelte
add await catch shorthand (#4490)
parent
fe003b57cb
commit
77ec48deba
@ -0,0 +1,41 @@
|
|||||||
|
let fulfil;
|
||||||
|
|
||||||
|
let thePromise = new Promise(f => {
|
||||||
|
fulfil = f;
|
||||||
|
});
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
thePromise
|
||||||
|
},
|
||||||
|
|
||||||
|
html: ``,
|
||||||
|
|
||||||
|
test({ assert, component, target }) {
|
||||||
|
fulfil(42);
|
||||||
|
|
||||||
|
return thePromise
|
||||||
|
.then(() => {
|
||||||
|
assert.htmlEqual(target.innerHTML, ``);
|
||||||
|
|
||||||
|
let reject;
|
||||||
|
|
||||||
|
thePromise = new Promise((f, r) => {
|
||||||
|
reject = r;
|
||||||
|
});
|
||||||
|
|
||||||
|
component.thePromise = 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,7 @@
|
|||||||
|
<script>
|
||||||
|
export let thePromise;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#await thePromise catch theError}
|
||||||
|
<p>oh no! {theError.message}</p>
|
||||||
|
{/await}
|
@ -0,0 +1,7 @@
|
|||||||
|
<script>
|
||||||
|
let promise;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#await promise catch error}
|
||||||
|
<p>Error: {error}</p>
|
||||||
|
{/await}
|
@ -0,0 +1 @@
|
|||||||
|
[]
|
Loading…
Reference in new issue