From 37ef8a015c71c9fbf28c29cada97a8f211d740c7 Mon Sep 17 00:00:00 2001 From: rafaelsideguide <150964962+rafaelsideguide@users.noreply.github.com> Date: Fri, 19 Apr 2024 17:55:35 -0300 Subject: [PATCH] fixing scrape preview test --- apps/api/src/__tests__/e2e/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/__tests__/e2e/index.test.ts b/apps/api/src/__tests__/e2e/index.test.ts index 0c36511..554453b 100644 --- a/apps/api/src/__tests__/e2e/index.test.ts +++ b/apps/api/src/__tests__/e2e/index.test.ts @@ -43,7 +43,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 it('should return a successful response with a valid API key', async () => { const response = await request(TEST_URL)