Skip to content

Commit 8eeba76

Browse files
authored
Update Circus.ts
1 parent c4d6e61 commit 8eeba76

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/jest-types/src/Circus.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,9 @@ export type DescribeBlock = {
273273
tests: Array<TestEntry>;
274274
};
275275

276-
export type TestError = Exception | [Exception | undefined, Exception | undefined]; // the error from the test, as well as a backup error for async
276+
export type TestError =
277+
| Exception
278+
| [Exception | undefined, Exception | undefined]; // the error from the test, as well as a backup error for async
277279

278280
export type TestEntry = {
279281
type: 'test';

0 commit comments

Comments
 (0)