diff --git a/packages/jest-types/src/Circus.ts b/packages/jest-types/src/Circus.ts index e1291bfe1764..ec103e401274 100644 --- a/packages/jest-types/src/Circus.ts +++ b/packages/jest-types/src/Circus.ts @@ -214,7 +214,7 @@ export type TestError = Exception | [Exception | undefined, Exception]; // the e export type TestEntry = { type: 'test'; asyncError: Exception; // Used if the test failure contains no usable stack trace - errors: TestError; + errors: Array; fn?: TestFn; invocations: number; mode: TestMode;