(originalJestFn: Function)
| 51 | } |
| 52 | |
| 53 | function wrapTestFactoryInZone(originalJestFn: Function) { |
| 54 | return function (this: unknown, ...tableArgs: any[]) { |
| 55 | return function (this: unknown, ...args: any[]) { |
| 56 | args[1] = wrapTestInZone(args[1]); |
| 57 | return originalJestFn.apply(this, tableArgs).apply(this, args); |
| 58 | }; |
| 59 | }; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Gets a function wrapping the body of a jest `describe` block to execute in a |
no test coverage detected
searching dependent graphs…