UNPKG

@aws-cdk-testing/cli-integ

Version:

Integration tests for the AWS CDK CLI

16 lines (12 loc) 417 B
import { integTest, withDefaultFixture } from '../../lib'; jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime integTest( 'synthing a stage with errors can be suppressed', withDefaultFixture(async (fixture) => { await fixture.cdk(['synth', '--no-validation'], { modEnv: { INTEG_STACK_SET: 'stage-with-errors', }, }); }), );