* Gets a function wrapping the body of a jest `describe` block to execute in a * synchronous-only zone.
(describeBody: Function)
| 64 | * synchronous-only zone. |
| 65 | */ |
| 66 | function wrapDescribeInZone(describeBody: Function): Function { |
| 67 | return function (this: unknown, ...args: any[]) { |
| 68 | return syncZone.run(describeBody, this, args); |
| 69 | }; |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Gets a function wrapping the body of a jest `it/beforeEach/afterEach` block to |
no test coverage detected
searching dependent graphs…