add tests, one failing

pull/15844/head
Rich Harris 2 months ago
parent c2e6b28a55
commit 12188f37f6

@ -0,0 +1,27 @@
import { tick } from 'svelte';
import { test } from '../../test';
export default test({
async test({ assert, target }) {
const [increment, shift] = target.querySelectorAll('button');
increment.click();
await tick();
shift.click();
await tick();
shift.click();
await tick();
assert.htmlEqual(
target.innerHTML,
`
<button>increment</button>
<button>shift</button>
<p>false</p>
<p>1</p>
`
);
}
});

@ -0,0 +1,28 @@
<script>
let count = $state(0);
let deferreds = [];
function push() {
const deferred = Promise.withResolvers();
deferreds.push(deferred);
return deferred.promise;
}
</script>
<button onclick={() => count += 1}>increment</button>
<button onclick={() => deferreds.shift()?.resolve(count)}>shift</button>
<svelte:boundary>
{#if count % 2 === 0}
<p>true</p>
<p>{await push()}</p>
{:else}
<p>false</p>
<p>{await push()}</p>
{/if}
{#snippet pending()}
<p>loading...</p>
{/snippet}
</svelte:boundary>

@ -0,0 +1,27 @@
import { tick } from 'svelte';
import { test } from '../../test';
export default test({
async test({ assert, target }) {
const [increment, shift] = target.querySelectorAll('button');
increment.click();
await tick();
shift.click();
await tick();
shift.click();
await tick();
assert.htmlEqual(
target.innerHTML,
`
<button>increment</button>
<button>shift</button>
<p>false</p>
<p>1</p>
`
);
}
});

@ -0,0 +1,29 @@
<script>
let count = $state(0);
let deferreds = [];
function push() {
const deferred = Promise.withResolvers();
deferreds.push(deferred);
return deferred.promise;
}
</script>
<button onclick={() => count += 1}>increment</button>
<button onclick={() => deferreds.shift()?.resolve([count])}>resolve</button>
<button onclick={() => deferreds.shift()?.reject(new Error('oops'))}>reject</button>
<svelte:boundary>
{#if count % 2 === 0}
<p>true</p>
{#each await push() as count}<p>{count}</p>{/each}
{:else}
<p>false</p>
{#each await push() as count}<p>{count}</p>{/each}
{/if}
{#snippet pending()}
<p>loading...</p>
{/snippet}
</svelte:boundary>
Loading…
Cancel
Save