We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f55829 commit d20e064Copy full SHA for d20e064
packages/svelte/tests/runtime-runes/samples/deferred-events-consistency-2/_config.js
@@ -2,7 +2,9 @@ import { flushSync } from 'svelte';
2
import { test } from '../../test';
3
4
export default test({
5
- skip: true, // need to make a browser test of this because calling click() sync will not let Svelte yield
+ // 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,
8
9
async test({ assert, target, logs }) {
10
const [b1] = target.querySelectorAll('button');
0 commit comments