Nick:
This commit is contained in:
parent
e6779aff68
commit
4328a68ec1
@ -117,7 +117,7 @@ describe("E2E Tests for API Routes with No Authentication", () => {
|
|||||||
expect(response.statusCode).not.toBe(401);
|
expect(response.statusCode).not.toBe(401);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should return a successful response with a valid API key", async () => {
|
it("should return a successful response without a valid API key", async () => {
|
||||||
const response = await request(TEST_URL)
|
const response = await request(TEST_URL)
|
||||||
.post("/v0/search")
|
.post("/v0/search")
|
||||||
.set("Content-Type", "application/json")
|
.set("Content-Type", "application/json")
|
||||||
@ -126,7 +126,7 @@ describe("E2E Tests for API Routes with No Authentication", () => {
|
|||||||
expect(response.body).toHaveProperty("success");
|
expect(response.body).toHaveProperty("success");
|
||||||
expect(response.body.success).toBe(true);
|
expect(response.body.success).toBe(true);
|
||||||
expect(response.body).toHaveProperty("data");
|
expect(response.body).toHaveProperty("data");
|
||||||
});
|
}, 20000);
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("GET /v0/crawl/status/:jobId", () => {
|
describe("GET /v0/crawl/status/:jobId", () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user