diff --git a/apps/api/src/__tests__/e2e_withAuth/index.test.ts b/apps/api/src/__tests__/e2e_withAuth/index.test.ts index 62c3bfa..5cac4ad 100644 --- a/apps/api/src/__tests__/e2e_withAuth/index.test.ts +++ b/apps/api/src/__tests__/e2e_withAuth/index.test.ts @@ -1012,7 +1012,7 @@ describe("E2E Tests for API Routes", () => { describe("Rate Limiter", () => { it.concurrent("should return 429 when rate limit is exceeded for preview token", async () => { - for (let i = 0; i < 4; i++) { + for (let i = 0; i < 5; i++) { const response = await request(TEST_URL) .post("/v0/scrape") .set("Authorization", `Bearer this_is_just_a_preview_token`)