diff --git a/apps/api/src/__tests__/e2e_extract/index.test.ts b/apps/api/src/__tests__/e2e_extract/index.test.ts index e1e4d1ce..dcb6bb4f 100644 --- a/apps/api/src/__tests__/e2e_extract/index.test.ts +++ b/apps/api/src/__tests__/e2e_extract/index.test.ts @@ -111,9 +111,11 @@ describe("E2E Tests for Extract API Routes", () => { let gotItRight = 0; for (const hiring of response.body.data?.items) { - if (hiring.includes("Developer Support Engineer")) gotItRight++; - if (hiring.includes("Dev Ops Engineer")) gotItRight++; + if (hiring.includes("Firecrawl Example Creator")) gotItRight++; + if (hiring.includes("Senior Frontend Engineer")) gotItRight++; + if (hiring.includes("Technical Chief of Staff")) gotItRight++; if (hiring.includes("Founding Web Automation Engineer")) gotItRight++; + if (hiring.includes("Founding Fullstack Engineer")) gotItRight++; } expect(gotItRight).toBeGreaterThan(2);