@aws-cdk/integ-tests-alpha
Version:
CDK Integration Testing Constructs
9 lines (8 loc) • 350 B
TypeScript
import { ISynthesisSession } from 'aws-cdk-lib/core';
import { IntegTestCase } from './test-case';
export declare class IntegManifestSynthesizer {
private readonly testCases;
private readonly enableLookups?;
constructor(testCases: IntegTestCase[], enableLookups?: boolean | undefined);
synthesize(session: ISynthesisSession): void;
}