@aws-cdk-testing/cli-integ
Version:
Integration tests for the AWS CDK CLI
25 lines (19 loc) • 995 B
text/typescript
import { integTest, withoutBootstrap } from '../../lib';
jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime
integTest('can deploy modern-synthesized stack even if bootstrap stack name is unknown', withoutBootstrap(async (fixture) => {
const bootstrapStackName = fixture.bootstrapStackName;
await fixture.cdkBootstrapModern({
toolkitStackName: bootstrapStackName,
cfnExecutionPolicy: 'arn:aws:iam::aws:policy/AdministratorAccess',
});
// Deploy stack that uses file assets
await fixture.cdkDeploy('lambda', {
options: [
// Explicity pass a name that's sure to not exist, otherwise the CLI might accidentally find a
// default bootstracp stack if that happens to be in the account already.
'--toolkit-stack-name', 'DefinitelyDoesNotExist',
'--context', `@aws-cdk/core:bootstrapQualifier=${fixture.qualifier}`,
'--context', '@aws-cdk/core:newStyleStackSynthesis=1',
],
});
}));