()
| 12 | import {describe, test} from '@jest/globals'; |
| 13 | |
| 14 | export function isJestJasmineRun(): boolean { |
| 15 | return process.env.JEST_JASMINE === '1'; |
| 16 | } |
| 17 | |
| 18 | export function skipSuiteOnJasmine(): void { |
| 19 | if (isJestJasmineRun()) { |
no outgoing calls
no test coverage detected