UNPKG

@aws-cdk-testing/cli-integ

Version:

Integration tests for the AWS CDK CLI

15 lines (14 loc) 594 B
import type { IRunnerSource, ITestCliSource, IPreparedRunnerSource } from './source'; export declare class RunnerCliNpmSource implements IRunnerSource<ITestCliSource> { private readonly range; readonly sourceDescription: string; constructor(range: string); runnerPrepare(): Promise<IPreparedRunnerSource<ITestCliSource>>; } export declare class TestCliNpmSource implements ITestCliSource { private readonly installRoot; private readonly range; constructor(installRoot: string, range: string); makeCliAvailable(): Promise<void>; requestedVersion(): string; }