(context: ExecutionContext)
| 17 | const NODE_MAJOR_VERSION = parseInt(process.versions.node.split('.')[0]!); |
| 18 | |
| 19 | function addDelayedWaitUntil(context: ExecutionContext) { |
| 20 | context.waitUntil(new Promise<void>(resolve => setTimeout(() => resolve()))); |
| 21 | } |
| 22 | |
| 23 | describe('withSentry', () => { |
| 24 | beforeAll(() => { |
no test coverage detected