UNPKG

@aws-cdk-testing/cli-integ

Version:

Integration tests for the AWS CDK CLI

15 lines (11 loc) 504 B
import { integTest, withDefaultFixture } from '../../lib'; jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime integTest( 'Construct with builtin Lambda function', withDefaultFixture(async (fixture) => { await fixture.cdkDeploy('builtin-lambda-function'); fixture.log('Setup complete!'); await fixture.cdkDestroy('builtin-lambda-function'); }), ); // this is to ensure that asset bundling for apps under a stage does not break