UNPKG

@aws-cdk/integ-runner

Version:

CDK Integration Testing Tool

12 lines (11 loc) 379 B
import type { ICdk } from '@aws-cdk/cdk-cli-wrapper'; import type { IntegRunnerOptions } from './runner-base'; export interface EngineOptions { /** * The CDK Toolkit engine to be used by the runner. * * @default "cli-wrapper" */ readonly engine?: 'cli-wrapper' | 'toolkit-lib'; } export declare function makeEngine(options: IntegRunnerOptions): ICdk;