Skip to content

Commit 2629561

Browse files
committed
failing test
1 parent 77b4f56 commit 2629561

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/svelte/tests/runtime-runes/samples/async-reactivity-loss/_config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default test({
1010

1111
async test({ assert, target, warnings }) {
1212
await tick();
13-
assert.htmlEqual(target.innerHTML, '<button>a</button><button>b</button><h1>3</h1>');
13+
assert.htmlEqual(target.innerHTML, '<button>a</button><button>b</button><h1>3</h1><p>3</p>');
1414

1515
assert.equal(
1616
warnings[0],

packages/svelte/tests/runtime-runes/samples/async-reactivity-loss/main.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
<svelte:boundary>
1414
<h1>{await a_plus_b()}</h1>
15+
<p>{await a + await b}</p>
1516

1617
{#snippet pending()}
1718
<p>pending</p>

0 commit comments

Comments
 (0)