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

Multi-cores #186

Open tomitrescak opened 4 months ago

tomitrescak commented 4 months ago

A quick question, does this run tests per-core in a separate process?

tomitrescak commented 4 months ago

What I mean is that would this possibly run faster using this approach?

https://medium.com/@ClaytonXia/multiprocessing-in-nodejs-a810e7d0b071

Instead of threads it would delegate work across each core independently. It works wonders in Python.