fix: typos in apps/api (#19762)

Found via codespell

Co-authored-by: Tushar Bhatt <95581504+TusharBhatt1@users.noreply.github.com>
This commit is contained in:
luzpaz
2025-03-05 14:29:11 +00:00
committed by GitHub
co-authored by Tushar Bhatt
parent 7226370427
commit be1377e9af
26 changed files with 49 additions and 49 deletions
@@ -180,11 +180,11 @@ describe("WebhooksController (e2e)", () => {
});
});
it("/webhooks/:webhookId (DELETE) shoud fail to delete a webhook that does not exist", () => {
it("/webhooks/:webhookId (DELETE) should fail to delete a webhook that does not exist", () => {
return request(app.getHttpServer()).delete(`/v2/webhooks/12993`).expect(404);
});
it("/webhooks/:webhookId (DELETE) shoud fail to delete a webhook that does not belong to user", () => {
it("/webhooks/:webhookId (DELETE) should fail to delete a webhook that does not belong to user", () => {
return request(app.getHttpServer()).delete(`/v2/webhooks/${otherWebhook.id}`).expect(403);
});
});