Troubleshooting Cypress
Troubleshooting Currents integration with Cypress
We are suspending our support of Cypress test runner version 13+
We will continue to support prior versions of Cypress.
If you are experiencing issues with using @currents/cli or cypress-cloud, please submit a support request either via in-app support chat or on GitHub:
Please collect the following information to help us effectively debug the problem:
The associated dashboard run URL
Screenshots if applicable
The exact command used to run
currentsorcypress-cloudConfiguration files (
cypress.config.{jt}sandcurrents.config.js)CI environment information (use the command below)
npx envinfo --system --binaries --browsers --npmPackages --duplicates --npmGlobalPackagesActivate debug mode and collect the logs
Enabling DEBUG mode for [email protected]+
DEBUG mode for [email protected]+Starting from version 1.9.0 cypress-cloud provides a CLI flag for activating the debug mode.
npx cypress-cloud run ... --cloud-debugYou can specify the scope of debug messages printed
true | allshow all debug messagescypressactivate debug mode for cypress onlycurrentsactivate the debug mode for currents onlycommit-infoactivate the debug mode for git commit info only
Enabling DEBUG mode for @currents/cli and cypress-cloud < 1.9.0
@currents/cli and cypress-cloud < 1.9.0# on Linux
DEBUG=currents:*,cypress:* npx cypress-cloud run ...
# on Windows
cmd /V /C "set DEBUG=currents:*,cypress:*&& npx cypress-cloud run ..."# on Linux
DEBUG=cy2*,cypress:* npx currents run ...
# on Windows
cmd /V /C "set DEBUG=cy2*,cypress:*&& npx currents run ..."Last updated
Was this helpful?