stupid tests

This commit is contained in:
Gergő Móricz 2025-04-09 19:54:52 +02:00
parent 9cb4987cdc
commit 6adc855c35

View File

@ -52,7 +52,7 @@ describe("Crawl tests", () => {
expect(page.metadata.url ?? page.metadata.sourceURL).toMatch(/^https:\/\/(www\.)?firecrawl\.dev\/blog/);
}
}
}, 120000);
}, 300000);
it.concurrent("discovers URLs properly when maxDiscoveryDepth is provided", async () => {
const res = await crawl({
@ -69,5 +69,5 @@ describe("Crawl tests", () => {
expect(page.metadata.url ?? page.metadata.sourceURL).not.toMatch(/^https:\/\/(www\.)?firecrawl\.dev\/blog\/.+$/);
}
}
}, 120000);
}, 300000);
});