diff --git a/packages/jest-circus/src/legacy-code-todo-rewrite/jestAdapterInit.ts b/packages/jest-circus/src/legacy-code-todo-rewrite/jestAdapterInit.ts index 0b0f92095ba3..a802125d8191 100644 --- a/packages/jest-circus/src/legacy-code-todo-rewrite/jestAdapterInit.ts +++ b/packages/jest-circus/src/legacy-code-todo-rewrite/jestAdapterInit.ts @@ -21,6 +21,7 @@ import { addSerializer, buildSnapshotResolver, } from 'jest-snapshot'; +import {bindConcurrent} from 'jest-each'; import throat from 'throat'; import { ROOT_DESCRIBE_BLOCK_NAME, @@ -99,6 +100,8 @@ export const initialize = ({ return concurrent; })(nodeGlobal.test); + nodeGlobal.test.each.concurrent = bindConcurrent(nodeGlobal.test.concurrent); + addEventHandler(eventHandler); if (environment.handleTestEvent) {