tnicola / cypress-parallel

Reduce up to 40% your Cypress suite execution time parallelizing the test run on the same machine.
MIT License
560 stars 117 forks source link

Cypress retries dont happen with cypress-parallel #184

Open illegalnumbers opened 5 months ago

illegalnumbers commented 5 months ago

When setting up cypress you can configure it to retry tests https://docs.cypress.io/guides/guides/test-retries#Global-Configuration

These dont appear to occur at all when running with cypress-parallel

Al366io commented 3 months ago

To me they actually do

I have it in my cypress.config file but you can even try a single one, just to see they actually work:

describe('test with retries', { retries: 3 }, () => {

Let me know :)