Skip to content

Commit

Permalink
Merge branch 'main' into awsgh-26320
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Jul 21, 2023
2 parents b9e6e3d + 9d9daba commit 652a39e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ describe('lambda api', () => {
// THEN
const template = Template.fromStack(stack);
// Ensure that all methods have "AWS_PROXY" integrations.
const methods = template.findResources('AWS::ApiGateway::Mathod');
const methods = template.findResources('AWS::ApiGateway::Method');
const hasProxyIntegration = Match.objectLike({ Integration: Match.objectLike({ Type: 'AWS_PROXY' }) });
for (const method of Object.values(methods)) {
expect(hasProxyIntegration.test(method)).toBeTruthy();
Expand Down

0 comments on commit 652a39e

Please sign in to comment.