( ...args: Parameters<typeof test> )
| 32 | } |
| 33 | |
| 34 | export function testWithVmEsm( |
| 35 | ...args: Parameters<typeof test> |
| 36 | ): ReturnType<typeof test> { |
| 37 | const fn = typeof SyntheticModule === 'function' ? test : test.skip; |
| 38 | return fn(...args); |
| 39 | } |
| 40 | |
| 41 | export function testWithSyncEsm( |
| 42 | ...args: Parameters<typeof test> |
no test coverage detected