Skip to content

Commit

Permalink
ch: remove unwanted test mock
Browse files Browse the repository at this point in the history
  • Loading branch information
acedeywin committed Jul 26, 2024
1 parent bb6c5ae commit 86a2c40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/webhooks/serviceConversationListener.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ describe('serviceConversationListener', () => {
const callback1: ServerlessCallback = (err, result) => {
expect(result).toBeDefined();
const response = result as MockedResponse;
expect(response.getStatus()).toBe(400);
expect(response.getStatus()).toBe(500);
};

await serviceConversationListener({ ...baseContext }, event1, callback1);
Expand Down

0 comments on commit 86a2c40

Please sign in to comment.