Skip to content

Commit

Permalink
test build for feature flag using IntegTest
Browse files Browse the repository at this point in the history
  • Loading branch information
go-to-k committed Feb 2, 2024
1 parent fd0ee48 commit 1b3166b
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import * as codecommit from 'aws-cdk-lib/aws-codecommit';
import * as codepipeline from 'aws-cdk-lib/aws-codepipeline';
import * as cdk from 'aws-cdk-lib';
import * as cpactions from 'aws-cdk-lib/aws-codepipeline-actions';
import * as integ from '@aws-cdk/integ-tests-alpha';

const app = new cdk.App();
const stack = new cdk.Stack(app, 'aws-cdk-codepipeline-cloudformation');
Expand Down Expand Up @@ -59,4 +60,7 @@ new codepipeline.Pipeline(stack, 'Pipeline', {
});
/// !hide

new integ.IntegTest(app, 'integ-aws-cdk-codepipeline-cloudformation', {
testCases: [stack],
});
app.synth();

0 comments on commit 1b3166b

Please sign in to comment.