mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 08:08:32 +00:00
* fix: fix Firecrawl Scrape tool * fix: fix Firecrawl Search tool * fix: fix Firecrawl Website tool * tests: adding tests for Firecrawl
16 lines
521 B
Python
16 lines
521 B
Python
import pytest
|
|
|
|
from crewai_tools.tools.firecrawl_scrape_website_tool.firecrawl_scrape_website_tool import (
|
|
FirecrawlScrapeWebsiteTool,
|
|
)
|
|
|
|
@pytest.mark.vcr(filter_headers=["authorization"])
|
|
def test_firecrawl_scrape_tool_integration():
|
|
tool = FirecrawlScrapeWebsiteTool()
|
|
result = tool.run(url="https://firecrawl.dev")
|
|
|
|
assert result is not None
|
|
assert hasattr(result, 'markdown')
|
|
assert len(result.markdown) > 0
|
|
assert "Firecrawl" in result.markdown or "firecrawl" in result.markdown.lower()
|