Skip to content

Commit fa8d459

Browse files
committed
adjust test (yes, this is _technically_ breaking)
1 parent 92ff62e commit fa8d459

File tree

1 file changed

+4
-0
lines changed
  • packages/svelte/tests/runtime-runes/samples/bind-this-no-state

1 file changed

+4
-0
lines changed

packages/svelte/tests/runtime-runes/samples/bind-this-no-state/_config.js

+4
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,22 @@ export default test({
2626

2727
await btn1?.click();
2828
await tick();
29+
await tick();
2930
assert.htmlEqual(target.innerHTML, get_html(1));
3031

3132
await btn2?.click();
3233
await tick();
34+
await tick();
3335
assert.htmlEqual(target.innerHTML, get_html(2));
3436

3537
await btn1?.click();
3638
await tick();
39+
await tick();
3740
assert.htmlEqual(target.innerHTML, get_html(1));
3841

3942
await btn3?.click();
4043
await tick();
44+
await tick();
4145
assert.htmlEqual(target.innerHTML, get_html(3));
4246
}
4347
});

0 commit comments

Comments
 (0)