Skip to content

Commit

Permalink
fix(@whook/aws-lambda): fix lambda testing
Browse files Browse the repository at this point in the history
  • Loading branch information
nfroidure committed Dec 5, 2024
1 parent 6170d57 commit a7b84a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/whook-aws-lambda/src/commands/testHTTPLambda.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ async function initTestHTTPLambdaCommand({
}
log('info', 'AWS_REQUEST:', awsRequest as unknown as string);

const result: APIGatewayProxyResult = await handler(awsRequest);
const result: APIGatewayProxyResult = await handler(awsRequest, {});

log('info', 'SUCCESS:', result as unknown as string);

Expand Down

0 comments on commit a7b84a8

Please sign in to comment.