mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 11:42:24 +08:00
59 lines
1.6 KiB
Markdown
59 lines
1.6 KiB
Markdown
# Test Suite for Firecrawl
|
|
|
|
This document provides an overview of the test suite for the Firecrawl project. It includes instructions on how to run the tests and interpret the results.
|
|
|
|
## Overview
|
|
|
|
The test suite is designed to ensure the reliability and performance of the Firecrawl system. It includes a series of automated tests that check various functionalities and performance metrics.
|
|
|
|
## Running the Tests
|
|
|
|
To run the tests, navigate to the `test-suite` directory and execute the following command:
|
|
|
|
```bash
|
|
npm install
|
|
npx playwright install
|
|
npm run test
|
|
```
|
|
|
|
## Running Load Tests with Artillery
|
|
|
|
To run load tests using Artillery, follow these steps:
|
|
|
|
1. Install Artillery globally if you haven't already:
|
|
|
|
```bash
|
|
npm install -g artillery
|
|
```
|
|
|
|
2. Run the load test:
|
|
|
|
```bash
|
|
artillery run load-test.yml
|
|
```
|
|
|
|
## Test Results
|
|
|
|
The tests are designed to cover various aspects of the system, including:
|
|
|
|
- Crawling accuracy
|
|
- Response time
|
|
- Error handling
|
|
|
|
### Example Test Case
|
|
|
|
- **Test Name**: Accuracy Test
|
|
- **Description**: This test checks the accuracy of the scraping mechanism with 100 pages and a fuzzy threshold of 0.8.
|
|
- **Expected Result**: Accuracy >= 0.9
|
|
- **Received Result**: Accuracy between 0.2 and 0.3
|
|
|
|
## Troubleshooting
|
|
|
|
If you encounter any failures or unexpected results, please check the following:
|
|
- Ensure your network connection is stable.
|
|
- Verify that all dependencies are correctly installed.
|
|
- Review the error logs for any specific error messages.
|
|
|
|
## Contributing
|
|
|
|
Contributions to the test suite are welcome. Please refer to the project's main [CONTRIBUTING.md](../CONTRIBUTING.md) file for guidelines on how to contribute. |