From 101f1fadd023c2d9523723d560c9ae1ccbb2fc2a Mon Sep 17 00:00:00 2001 From: rafaelsideguide <150964962+rafaelsideguide@users.noreply.github.com> Date: Mon, 3 Jun 2024 15:49:43 -0300 Subject: [PATCH] fixing test timeout --- apps/api/src/__tests__/e2e_withAuth/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/__tests__/e2e_withAuth/index.test.ts b/apps/api/src/__tests__/e2e_withAuth/index.test.ts index 8346839e..e81d18e5 100644 --- a/apps/api/src/__tests__/e2e_withAuth/index.test.ts +++ b/apps/api/src/__tests__/e2e_withAuth/index.test.ts @@ -68,7 +68,7 @@ describe("E2E Tests for API Routes", () => { .set("Content-Type", "application/json") .send({ url: "https://firecrawl.dev" }); expect(response.statusCode).toBe(200); - }, 10000); // 10 seconds timeout + }, 30000); // 30 seconds timeout it("should return a successful response with a valid API key", async () => { const response = await request(TEST_URL)