tnicola / cypress-parallel

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

While executing parallel tests, it waits for other thread to get completed to start a new tests on a thread where execution already completed #104

Closed jgadara closed 2 years ago

jgadara commented 2 years ago

I have a question. This is what my scenarios looks like. I have 10 tests and 1 tests takes around 10 mins (Can't break down the test due to known limitation) and others are taking less than 2 mins individually. I was thinking to run tests on parallel with two threads where in one thread I can run test which is taking more time and in other I will keep all others test. But with this tool, after running it with two threads, Second thread gets into a waiting until and unless the first thread execution gets completed. Can someone help me with the solution? Thanks in advance!