UNPKG

@aws-cdk-testing/cli-integ

Version:

Integration tests for the AWS CDK CLI

12 lines (11 loc) 453 B
export interface TestContext { readonly randomString: string; readonly name: string; readonly output: NodeJS.WritableStream; log(s: string): void; } /** * A wrapper for jest's 'test' which takes regression-disabled tests into account and prints a banner */ export declare function integTest(name: string, callback: (context: TestContext) => Promise<void>, timeoutMillis?: number): void; export declare function randomString(): string;