Slow Test Analytics

Identify tests slowing down your pipeline and find optimization opportunities

RP

Avg Test Duration

0ms

across all tracked tests

Slowest Test (p95)

0ms

no tests tracked

Regressing Tests

0

getting slower over time

Time Lost

0ms

estimated from high-severity tests

No high or critical slow tests. Keep it up!

Optimization Recommendations
1

Split tests with p95 > 30s into smaller parallelizable units.

2

Mock slow network/API dependencies instead of using real endpoints in tests.

3

Replace waitForTimeout() with event-driven waitFor() conditions.

4

Move expensive fixtures into beforeAll() so setup runs once per suite.

5

Enable Playwright's built-in test sharding to parallelize across CI workers.