You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into the same issue. I fixed it by reducing the size of the JSON files. For example, for my use case, we didn't need code coverage for files in node_modules directory. Perhaps the same or something similar can apply to your case.
We run 20+ parallel runs of cypress that generate 20 different
coverage${ID}-final.json
stored incypress/coverage
Expected Behavior
$(npm bin)/nyc merge cypress/coverage cypress/coverage/coverage-final.json
should merge them into a single coverage file without issue.Observed Behavior
$(npm bin)/nyc merge cypress/coverage cypress/coverage/coverage-final.json
throws this error:Likely issue
Might be happening due to nodejs/node#35973 and thus lowering the number of runs to 14 works as the size of the json is lower than 500MB
The text was updated successfully, but these errors were encountered: