Skip to content

Commit

Permalink
fix(tests/v0): grant larger response size to v0 crawl status
Browse files Browse the repository at this point in the history
  • Loading branch information
mogery committed Nov 5, 2024
1 parent 7a1cf43 commit 3f623fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/api/src/__tests__/e2e_withAuth/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,8 @@ describe("E2E Tests for v0 API Routes", () => {
await new Promise((r) => setTimeout(r, 10000));
const completedResponse = await request(TEST_URL)
.get(`/v0/crawl/status/${crawlResponse.body.jobId}`)
.set("Authorization", `Bearer ${process.env.TEST_API_KEY}`);
.set("Authorization", `Bearer ${process.env.TEST_API_KEY}`)
.maxResponseSize(4000000000);

expect(completedResponse.statusCode).toBe(200);
expect(completedResponse.body).toHaveProperty("status");
Expand Down

0 comments on commit 3f623fc

Please sign in to comment.