Skip to content

Commit fea2777

Browse files
authored
chore(lambda-nodejs): update integration test for bundling (#33770)
### Issue # (if applicable) Closes #NA. ### Reason for this change Integ test failing due to insufficient permissions to node user, change the command for testing ### Description of changes Fixed command in nodejs bundling integ test ### Describe any new or updated permissions being added NA ### Description of how you validated changes yarn integ ### Checklist - [ ] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 6bd7075 commit fea2777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@aws-cdk-testing/framework-integ/test/aws-lambda-nodejs/test/integ.bundling-user.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ new lambda.NodejsFunction(stack, 'ts-decorator-handler-root-user', {
2121
return ['id'];
2222
},
2323
afterBundling: function (_inputDir: string, _outputDir: string): string[] {
24-
return ['mkdir test'];
24+
return ['pwd'];
2525
},
2626
},
2727
},

0 commit comments

Comments
 (0)