Skip to content

Commit

Permalink
fix type of testErrors
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed May 4, 2020
1 parent 2e6b642 commit b212f99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jest-types/src/Circus.ts
Expand Up @@ -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<TestError>;
fn?: TestFn;
invocations: number;
mode: TestMode;
Expand Down

0 comments on commit b212f99

Please sign in to comment.