(execPromise: Promise<Partial<UnprocessedExecResult>>)
| 31 | import {UnprocessedExecResult} from '../types/execution/execution.interfaces.js'; |
| 32 | |
| 33 | async function testExecOutput(execPromise: Promise<Partial<UnprocessedExecResult>>) { |
| 34 | const x = await execPromise; |
| 35 | expect(x.filenameTransform).toBeInstanceOf(Function); |
| 36 | delete x.filenameTransform; |
| 37 | delete x.execTime; |
| 38 | return x; |
| 39 | } |
| 40 | |
| 41 | describe('Execution tests', async () => { |
| 42 | if (process.platform === 'win32') { |