(args: string[], options?: { env?: NodeJS.ProcessEnv })
| 61 | }; |
| 62 | |
| 63 | export function runCliJson(args: string[], options?: { env?: NodeJS.ProcessEnv }): CliJsonResult { |
| 64 | return runSourceCliJsonSync(args, options); |
| 65 | } |
| 66 | |
| 67 | export function createIntegrationTestContext(options: IntegrationTestContextOptions) { |
| 68 | const { platform, testName, extraEnv } = options; |
no test coverage detected