mirror of https://github.com/sveltejs/svelte
Merge pull request #1967 from sveltejs/gh-1939
set parent correctly for children of await blockspull/1983/head
commit
2d3dbdd6a9
@ -0,0 +1,35 @@
|
||||
let fulfil;
|
||||
|
||||
let 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>
|
||||
`);
|
||||
});
|
||||
}
|
||||
};
|
@ -0,0 +1,11 @@
|
||||
<div>
|
||||
{#await thePromise}
|
||||
<p>loading...</p>
|
||||
{:then theValue}
|
||||
{#if show}
|
||||
<p>the value is {theValue}</p>
|
||||
{/if}
|
||||
{:catch theError}
|
||||
<p>oh no! {theError.message}</p>
|
||||
{/await}
|
||||
</div>
|
Loading…
Reference in new issue