mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 03:32:22 +08:00
Update index.test.ts
This commit is contained in:
parent
4a6cfb6097
commit
123fb784ca
|
@ -155,7 +155,7 @@ describe("E2E Tests for API Routes", () => {
|
||||||
url: "https://mendable.ai",
|
url: "https://mendable.ai",
|
||||||
limit: 10,
|
limit: 10,
|
||||||
crawlerOptions: {
|
crawlerOptions: {
|
||||||
includes: ["/blog/*"],
|
includes: ["blog/*"],
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -184,7 +184,7 @@ describe("E2E Tests for API Routes", () => {
|
||||||
expect(urls.length).toBeGreaterThan(5);
|
expect(urls.length).toBeGreaterThan(5);
|
||||||
urls.forEach((url: string) => {
|
urls.forEach((url: string) => {
|
||||||
console.log({url})
|
console.log({url})
|
||||||
expect(url.startsWith("https://mendable.ai/blog/")).toBeTruthy();
|
expect(url.startsWith("https://www.mendable.ai/blog/")).toBeTruthy();
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(completedResponse.statusCode).toBe(200);
|
expect(completedResponse.statusCode).toBe(200);
|
||||||
|
@ -206,7 +206,7 @@ describe("E2E Tests for API Routes", () => {
|
||||||
url: "https://mendable.ai",
|
url: "https://mendable.ai",
|
||||||
limit: 10,
|
limit: 10,
|
||||||
crawlerOptions: {
|
crawlerOptions: {
|
||||||
excludes: ["/blog/*"],
|
excludes: ["blog/*"],
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -234,7 +234,7 @@ describe("E2E Tests for API Routes", () => {
|
||||||
);
|
);
|
||||||
expect(urls.length).toBeGreaterThan(5);
|
expect(urls.length).toBeGreaterThan(5);
|
||||||
urls.forEach((url: string) => {
|
urls.forEach((url: string) => {
|
||||||
expect(url.startsWith("https://mendable.ai/blog/")).toBeFalsy();
|
expect(url.startsWith("https://wwww.mendable.ai/blog/")).toBeFalsy();
|
||||||
});
|
});
|
||||||
}, 60000); // 60 seconds
|
}, 60000); // 60 seconds
|
||||||
|
|
||||||
|
@ -357,7 +357,7 @@ describe("E2E Tests for API Routes", () => {
|
||||||
expect(completedResponse.body).toHaveProperty("status");
|
expect(completedResponse.body).toHaveProperty("status");
|
||||||
expect(completedResponse.body.status).toBe("completed");
|
expect(completedResponse.body.status).toBe("completed");
|
||||||
expect(completedResponse.body).toHaveProperty("data");
|
expect(completedResponse.body).toHaveProperty("data");
|
||||||
expect(completedResponse.body.data.length).toBe(3);
|
expect(completedResponse.body.data.length).toBe(10);
|
||||||
expect(completedResponse.body.data[0]).toHaveProperty("content");
|
expect(completedResponse.body.data[0]).toHaveProperty("content");
|
||||||
expect(completedResponse.body.data[0]).toHaveProperty("markdown");
|
expect(completedResponse.body.data[0]).toHaveProperty("markdown");
|
||||||
expect(completedResponse.body.data[0]).toHaveProperty("metadata");
|
expect(completedResponse.body.data[0]).toHaveProperty("metadata");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user