()
| 24 | } |
| 25 | |
| 26 | export function skipSuiteOnJestCircus(): void { |
| 27 | if (!isJestJasmineRun()) { |
| 28 | test.only('does not work on jest-circus', () => { |
| 29 | console.warn('[SKIP] Does not work on jest-circus'); |
| 30 | }); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | export function testWithVmEsm( |
| 35 | ...args: Parameters<typeof test> |
no test coverage detected