Skip to content

Commit

Permalink
rerun integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
Michelle Wang committed Sep 20, 2024
1 parent 2ae6eb7 commit 7cd9f6a
Show file tree
Hide file tree
Showing 6 changed files with 171 additions and 7 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@ import * as fs from 'fs';
import * as path from 'path';
import * as cdk from 'aws-cdk-lib';
import * as ec2 from 'aws-cdk-lib/aws-ec2';
import * as integ from '@aws-cdk/integ-tests-alpha';
import { EC2_RESTRICT_DEFAULT_SECURITY_GROUP } from 'aws-cdk-lib/cx-api';

const app = new cdk.App();
const app = new cdk.App({
postCliContext: {
'@aws-cdk/aws-ec2:ec2SumTImeoutEnabled': false,
},
});
const stack = new cdk.Stack(app, 'integ-init');
stack.node.setContext(EC2_RESTRICT_DEFAULT_SECURITY_GROUP, false);

Expand Down Expand Up @@ -64,4 +69,8 @@ new ec2.Instance(stack, 'Instance2', {
resourceSignalTimeout: cdk.Duration.minutes(10),
});

new integ.IntegTest(app, 'EnableSumTimeoutInstanceTest', {
testCases: [stack],
});

app.synth();

0 comments on commit 7cd9f6a

Please sign in to comment.