8000 fix(jest): increase internal timeout for `.toHTMLValidate()` from 10s… · html-validate/html-validate@f5f9917 · GitHub
[go: up one dir, main page]

Skip to content

Commit f5f9917

Browse files
committed
fix(jest): increase internal timeout for .toHTMLValidate() from 10s to 30s
refs #298
1 parent e8c0259 commit f5f9917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jest/worker/create-sync-fn.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function isWorkerError<T>(value: WorkerToMainMessage<T>): value is WorkerToMainE
3030
}
3131

3232
function receiveMessageWithId<R>(port: MessagePort, expectedId: number): WorkerToMainMessage<R> {
33-
const timeout = 10000;
33+
const timeout = 30000;
3434
const status = Atomics.wait(sharedBufferView, 0, 0, timeout);
3535
Atomics.store(sharedBufferView, 0, 0);
3636

0 commit comments

Comments
 (0)
0