Cypress slows down when running many tests
If you use Cypress GUI to run all tests the browser will gradually slow down or even crash. That’s because GUI is meant to be used during test development/debugging, not for running whole suite. issue 431
If you plan to run the whole suite use cypress run
which runs in headless mode and is optimized for running lots of tests.