Skip to content

Commit f1d7f1a

Browse files
committed
chore: skip flaky test on node 23 as well
1 parent b019f50 commit f1d7f1a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/jest-worker/src/workers/__tests__/WorkerEdgeCases.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ const threadChildWorkerPath = join(writeDestination, 'workers/threadChild.js');
3131
// https://github.com/nodejs/node/issues/51766
3232
if (
3333
process.platform === 'win32' &&
34-
(process.version.startsWith('v21.') || process.version.startsWith('v22.'))
34+
(process.version.startsWith('v21.') ||
35+
process.version.startsWith('v22.') ||
36+
process.version.startsWith('v23.'))
3537
) {
3638
// eslint-disable-next-line jest/no-focused-tests
3739
test.only('skipping test on broken platform', () => {

0 commit comments

Comments
 (0)