GPU process exited unexpectedly: exit_code=139 (ubuntu) #30527
Closed
breathingcyborg
started this conversation in
General
Replies: 1 comment
-
For anyone having this issue in future. This is due to issue in electron (or chromium version electron uses). It also affects other electron apps like vscode. Issue: Electron applications all crash upon launch This worked for me ELECTRON_EXTRA_LAUNCH_ARGS="--disable-accelerated-video-decode" npx cypress open If this does not work then you can try other flags mentioned in the issue linked above. And enable logging for more info. ELECTRON_ENABLE_LOGGING=true ELECTRON_EXTRA_LAUNCH_ARGS="--disable-accelerated-video-decode --no-sandbox --disable-gpu-sandbox" npx cypress open |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Got this error while following this tutorial. https://learn.cypress.io/testing-your-first-application/installing-cypress-and-writing-your-first-test
Just cloned the example repo, installed dependencies, installed cypress and ran
npx run open
.cypress info
additional info
Things I've tried
disabling electron gpu sandbox
running on firefox
passing disable gpu arg before launching browser.
cypress.config.js
Beta Was this translation helpful? Give feedback.
All reactions