Skip to content

Commit

Permalink
failing test for sveltejs#4044
Browse files Browse the repository at this point in the history
  • Loading branch information
Conduitry committed Dec 3, 2019
1 parent 13ef75b commit d9416e8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/runtime/samples/await-containing-contextual-if/_config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export default {
html: `
<p>loading...</p>
`,
async test({ assert, target }) {
await null;
assert.htmlEqual(target.innerHTML, `
<p>true</p>
`);
}
};
13 changes: 13 additions & 0 deletions test/runtime/samples/await-containing-contextual-if/main.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<script>
const promise = Promise.resolve(true);
</script>

{#await promise}
<p>loading...</p>
{:then result}
{#if result}
<p>true</p>
{:else}
<p>false</p>
{/if}
{/await}

0 comments on commit d9416e8

Please sign in to comment.