()
| 250 | } |
| 251 | |
| 252 | export function createSuiteHooks(): SuiteHooks { |
| 253 | return { |
| 254 | beforeAll: [], |
| 255 | afterAll: [], |
| 256 | beforeEach: [], |
| 257 | afterEach: [], |
| 258 | aroundEach: [], |
| 259 | aroundAll: [], |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | const POSITIVE_INFINITY = Number.POSITIVE_INFINITY |
| 264 |
no outgoing calls
no test coverage detected