From 354712a8a352a0487d718cfff24703d3ced344d2 Mon Sep 17 00:00:00 2001 From: rafaelsideguide <150964962+rafaelsideguide@users.noreply.github.com> Date: Fri, 14 Jun 2024 13:02:04 -0300 Subject: [PATCH] just changed the name for the test? --- apps/api/src/__tests__/e2e_withAuth/index.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/src/__tests__/e2e_withAuth/index.test.ts b/apps/api/src/__tests__/e2e_withAuth/index.test.ts index adce022..7c234ef 100644 --- a/apps/api/src/__tests__/e2e_withAuth/index.test.ts +++ b/apps/api/src/__tests__/e2e_withAuth/index.test.ts @@ -618,7 +618,7 @@ describe("E2E Tests for API Routes", () => { }); }, 180000); - it.concurrent("should return a successful response with relative max depth option for a valid crawl job different depths (0)", async () => { + it.concurrent("should return a successful response with relative max depth option for a valid crawl job with maxDepths equals to zero", async () => { const crawlResponse = await request(TEST_URL) .post("/v0/crawl") .set("Authorization", `Bearer ${process.env.TEST_API_KEY}`) @@ -671,7 +671,7 @@ describe("E2E Tests for API Routes", () => { }); }, 180000); - it.concurrent("should return a successful response with relative max depth option for a valid crawl job different depths (2)", async () => { + it.concurrent("should return a successful response with relative max depth option for a valid crawl job with maxDepth equals to 2", async () => { const crawlResponse = await request(TEST_URL) .post("/v0/crawl") .set("Authorization", `Bearer ${process.env.TEST_API_KEY}`)