(...params: Parameters<typeof base>)
| 335 | }) |
| 336 | |
| 337 | async function runInlineTests(...params: Parameters<typeof base>) { |
| 338 | const result = await base(params[0], { globals: true, detectAsyncLeaks: true, ...params[1] }, params[2]) |
| 339 | |
| 340 | return { ...result, stderr: trimWhitespace(result.stderr) } |
| 341 | } |
| 342 | |
| 343 | function trimWhitespace(value: string) { |
| 344 | return value |
no test coverage detected