We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3093f6 commit 09ed1afCopy full SHA for 09ed1af
packages/jest-worker/src/workers/__tests__/WorkerEdgeCases.test.ts
@@ -28,7 +28,11 @@ const processChildWorkerPath = join(
28
);
29
const threadChildWorkerPath = join(writeDestination, 'workers/threadChild.js');
30
31
-if (process.platform === 'win32' && process.version.startsWith('v21.')) {
+// https://github.com/nodejs/node/issues/51766
32
+if (
33
+ process.platform === 'win32' &&
34
+ (process.version.startsWith('v21.') || process.version.startsWith('v22.'))
35
+) {
36
// eslint-disable-next-line jest/no-focused-tests
37
test.only('skipping test on broken platform', () => {
38
console.warn('Skipping test on broken platform');
0 commit comments