FuelLabs/docs-hub

feature: Playwrite test optimization

Opened this issue · 0 comments

Optimization Strategies for Playwright Tests

1. Parallel Execution: Currently, Playwright tests utilize only one worker in a single-threaded mode. However, these tests are capable of running in parallel. Implementing parallel execution can significantly reduce the overall test execution time.

Solved by #55

  1. Reduced Action Timeouts: The current configuration includes a generous time limit for each action. Optimizing these timeouts—reducing them to the minimum necessary duration—can accelerate test completion without compromising on reliability.