From 59547d71291c87453fe1aadd244257095b127211 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Wed, 28 Aug 2024 14:22:26 -0300 Subject: [PATCH] Update index.test.ts --- apps/api/src/__tests__/e2e_v1_withAuth/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/__tests__/e2e_v1_withAuth/index.test.ts b/apps/api/src/__tests__/e2e_v1_withAuth/index.test.ts index b960ae55..562e7d56 100644 --- a/apps/api/src/__tests__/e2e_v1_withAuth/index.test.ts +++ b/apps/api/src/__tests__/e2e_v1_withAuth/index.test.ts @@ -863,7 +863,7 @@ describe("GET /v1/crawl/:jobId", () => { .post("/v1/crawl") .set("Authorization", `Bearer ${process.env.TEST_API_KEY}`) .set("Content-Type", "application/json") - .send({ url: "https://roastmywebsite.ai" }); + .send({ url: "https://docs.mendable.ai" }); expect(crawlResponse.statusCode).toBe(200); let isCompleted = false;