Is anyone else seeing their run times drastically increase when running the tests in electron in Cypress 10? The good news is that the tests run almost as quickly in chrome in Cypress 10 as they did in electron in Cypress 8. But here's a few benchmarks I took just now from our Github Actions pipeline
Test1
Cypress 8 electron - 17s
Cypress 8 chrome - 27s
Cypress 10 electron - 47s
Cypress 10 chrome - 21s
Test 2
Cypress 8 electron - 12s
Cypress 8 chrome - 19s
Cypress 10 electron - 30s
Cypress 10 chrome - 13s
Test 3
Cypress 8 electron - 19s
Cypress 8 chrome - 22s
Cypress 10 electron - 39s
Cypress 10 chrome - 16s
For some bare minimum context, we have a Vue 2 frontend, Node backend. We're running our tests on virtual Linux runners on Github actions using Node 16.15.0
So if this is a bigger issue, I can get more info and submit an issue somewhere. I'm not worried since I can just flip our pipeline to use chrome. But this was really weird to me and just wanted a gut check on whether this is happening to anyone else? Or is it just our app?