-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cypress crashes after getting around 2000mb of memory #28893
Comments
@Tomerlev01 Did you try setting |
Yeah, I tried that also, doesn't work. |
I got the same problems... cant run a single test in a pipeline :( |
I also have the same problem, my test would run for 10 minutes and then crash. I have split it up into smaller 'it' blocks and there are 7 of them and it still crashes! This is crazy, I see so many people with the same issue and there is no fix. I have tried both experimentalMemoryManagement and numTestKeptInMemory and nothing works. I've just joined a new job and created a full regression test suite and it was going so well and now this is happening. We need a fix. |
If anyone could provide a reproducible example, that would be helpful. |
I'm having this same issue on Cypress 13.6.4, 13.6.3 and 13.5.0 looks like could be something related to vite or node 20, the snapshots to keep tests in memory are storing an unusual amount of data and overflowing, if I set numTestsKeptInMemory to 1 and check the Memory consuming on Chrome I can see we are storing almost 4000mb, but if I set numTestsKeptInMemory to 0 we get just 150mb |
You can simulate it by running a simple test over and over. |
Does someone have maybe information about how to solve it? |
You can try to add |
I tried it, but still, the crushing is reproduced. |
isn't using Windows with Electron browser enough? |
I found a workaround, and it does work which has made me very happy. All you need to do is run your tests in --headed and it seems to reduce the amount of memory used (I know crazy) but it works and my pipelines are back up and running. |
As I said, this is happening to me when I'm using the headless mode (doing it by running the tests in the 'run' mode). |
Thanks a lot for the hint! You've saved my day! As soon as I switched to headed mode our pipeline came back to normal! Cypress team should invest their time to this issue as this is clearly a performance bug. |
Yah, that's unusual. Chrome headless browser has some differences. On Cypress's size, we change things so that it uses LESS memory when in headless for sure, so I wonder if it's some difference with how Chrome --headless runs vs --headed. And also whether it's related to their headless=new changes. A reproducible example would still be helpful. |
Im actually having this same issue. Trying with --headed mode on CI seems to work. However Im not being able to reproduce it locally. What I can affirm with certain, however, is that I was not having this issue with v13.6.1. It started happening after I updated, and even by splitting down the tests alot, it still crashes. |
This is what I wrote above: |
We were facing memory crashes a lot, for us running with |
Interesting. Shame that I will not see the command log for investigation. |
None of the above solutions worked for my team. We have just a few Cypress E2E tests running in a Github Actions CI pipeline. It would error out with that same message in the OP during the execution of the third or fourth test, without fail. Turns out our problem had to do with Cypress Cloud. Test Replay was turned on by default when we created our Cypress Cloud project, and that was evidently causing major issues in CI. Turning off Test Replay in our Cypress Cloud project solved the issue. |
@ndirig Could you provide a link to a URL of a Test Replay in the Cloud where you were facing this issue? |
@jennifer-shehane I'm afraid not. All the CI runs in which I got the Not sure if this will do you any good, but here's the URL to the run itself in Cypress Cloud. https://cloud.cypress.io/projects/sf3837/runs/12/test-results |
This also seemed to work on our end (we use jenkins). |
I am also facing that issue with Cypress v13.7.0, the issue reproduces on the Cypress cloud. |
@bjornlauwerijs Please try upgrading to 13.13.2. We fixed a memory leak that was occuring with Test Replay turned on. We'd be interested to work with you on getting debug logs and memory logs if this is still occurring with Test Replay enabled after upgrading. |
@jennifer-shehane i have the exact same issue as mentioned by @bjornlauwerijs |
@rmonteiro88 We are investigating some memory related issues with Test Replay on. If you have more information to share around the run logs or reproducible examples you can reach out to [email protected] to share those with us. |
Going to close this as a duplicate of #27415 which we are actively investigating. Any more reproducible examples that could be added to that issue could help us tremendously. |
Test code to reproduce
It happened to me "often" on some specs on the "cypress run" mode
And in the "cypress open" it happened a lot
The memory seems to increase from test to test and not to return to the "base levels"
This is the error that I got
<--- Last few GCs --->
[1419:0x44003e4000] 459478 ms: Mark-Compact 1950.0 (2075.7) -> 1933.0 (2061.9) MB, 1479.45 / 0.05 ms (average mu = 0.072, current mu = 0.016) allocation failure; GC in old space requested
[1419:0x44003e4000] 460269 ms: Mark-Compact 1945.5 (2066.1) -> 1936.5 (2065.8) MB, 706.73 / 0.02 ms (average mu = 0.085, current mu = 0.106) allocation failure; scavenge might not succeed
<--- JS stacktrace --->
[1419:0124/185431.057257:ERROR:v8_initializer.cc(753)] V8 javascript OOM (Ineffective mark-compacts near heap limit).
Cypress Mode
both modes
Cypress Version
13.6.4
Browser Version
121.0.6167.139
Node version
v20.10.0
Operating System
14.3
Memory Debug Logs
No response
Other
Happened a lot, can't run a pull regression like this.
Our project contain around 225 tests.
The text was updated successfully, but these errors were encountered: