()
| 16 | } |
| 17 | |
| 18 | export function skipSuiteOnJasmine(): void { |
| 19 | if (isJestJasmineRun()) { |
| 20 | test.only('does not work on Jasmine', () => { |
| 21 | console.warn('[SKIP] Does not work on Jasmine'); |
| 22 | }); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | export function skipSuiteOnJestCircus(): void { |
| 27 | if (!isJestJasmineRun()) { |
no test coverage detected