This commit is contained in:
Nicolas 2024-08-28 13:46:39 -03:00
parent ecd07be49e
commit 9a13034095

View File

@ -31,7 +31,8 @@ it('should return a list of links on the firecrawl.ai page', async () => {
// Check if the result contains a list of links
expect(result.linksOnPage).toBeDefined();
console.log({result});
expect(Array.isArray(result.linksOnPage)).toBe(true);
expect(result.linksOnPage.length).toBeGreaterThan(0);
expect(result.linksOnPage).toContain('https://flutterbricks.com/features')
}, 10000);
}, 15000);