Skip to content

Commit 9356393

Browse files
committed
Test helpers added
1 parent 74163c8 commit 9356393

File tree

1 file changed

+4
-4
lines changed
  • packages/aws-cdk/test/integ/helpers

1 file changed

+4
-4
lines changed

packages/aws-cdk/test/integ/helpers/cdk.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ export interface CdkModernBootstrapCommandOptions extends CommonCdkBootstrapComm
300300
readonly template?: string;
301301

302302
/**
303-
* @default false
303+
* @default undefined
304304
*/
305305
readonly terminationProtection?: boolean;
306306

@@ -428,9 +428,9 @@ export class TestFixture {
428428
if (options.defaultPermissionsBoundary) {
429429
args.push('--create-default-permissions-boundary');
430430
}
431-
if (options.customPermissionsBoundary) {
432-
args.push('--create-default-permissions-boundary', options.customPermissionsBoundary);
433-
}
431+
// if (options.customPermissionsBoundary) {
432+
// args.push('--permissions-boundary', options.customPermissionsBoundary);
433+
// }
434434

435435
return this.cdk(args, {
436436
...options.cliOptions,

0 commit comments

Comments
 (0)