UNPKG

@aws-cdk-testing/cli-integ

Version:

Integration tests for the AWS CDK CLI

21 lines (20 loc) 886 B
import type { IRunnerSource, IPreparedRunnerSource, ITestLibrarySource } from './source'; /** * A library dependency that cli-integ installs into its own `node_modules`. */ export declare class RunnerLibraryGlobalInstallSource implements IRunnerSource<ITestLibrarySource> { private readonly packageName; private readonly range; readonly sourceDescription: string; constructor(packageName: string, range: string); runnerPrepare(): Promise<IPreparedRunnerSource<ITestLibrarySource>>; } export declare class TestLibraryGlobalInstallSource implements ITestLibrarySource { readonly packageName: string; private readonly version; constructor(packageName: string, version: string); requestedVersion(): string; assertJsiiPackagesAvailable(): void; initializeDotnetPackages(currentDir: string): Promise<void>; requestedAlphaVersion(): string; }