From 1b3166bb58a9efd75cdb564466d16846235fe59e Mon Sep 17 00:00:00 2001 From: go-to-k <24818752+go-to-k@users.noreply.github.com> Date: Fri, 2 Feb 2024 14:42:57 +0900 Subject: [PATCH] test build for feature flag using IntegTest --- .../test/integ.cfn-template-from-repo.lit.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.cfn-template-from-repo.lit.ts b/packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.cfn-template-from-repo.lit.ts index 2172ee7b0633c..408b457a6ce11 100644 --- a/packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.cfn-template-from-repo.lit.ts +++ b/packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.cfn-template-from-repo.lit.ts @@ -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'); @@ -59,4 +60,7 @@ new codepipeline.Pipeline(stack, 'Pipeline', { }); /// !hide +new integ.IntegTest(app, 'integ-aws-cdk-codepipeline-cloudformation', { + testCases: [stack], +}); app.synth();