Skip to content

Commit d20e064

Browse files
committed
chore: enhance comment on skipped test
explain what we need to unskip it
1 parent 7f55829 commit d20e064

File tree

1 file changed

+3
-1
lines changed
  • packages/svelte/tests/runtime-runes/samples/deferred-events-consistency-2

1 file changed

+3
-1
lines changed

packages/svelte/tests/runtime-runes/samples/deferred-events-consistency-2/_config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ import { flushSync } from 'svelte';
22
import { test } from '../../test';
33

44
export default test({
5-
skip: true, // need to make a browser test of this because calling click() sync will not let Svelte yield
5+
// currently not testable in our test suide: click() will synchronously call submit which is not the case in a real browser
6+
// (moving this test to runtime-browser doesn't help either for some reason)
7+
skip: true,
68

79
async test({ assert, target, logs }) {
810
const [b1] = target.querySelectorAll('button');

0 commit comments

Comments
 (0)