I want to find out if cypress runs or doesn't run in the NextJS application. My idea is prevent a some http requests in the NextJS application if the Cypress tests are running.
I am able to catch if cypress is running when I run "npx cypress open" for a browser like this:
if(window.Cypress){
// prevent http request or do something
}
But I am not able to check if the cypress is running or not in headless mode with "npx cypress run"
command.
I tried to add extra env variable in the package.json
file like in below:
...
"cy:run": "cross-env CY_MODE=true cypress run",
...
But it doesn't set the CY_MODE env variable when I try to log process.env.CY_MODE
.
How can I set a custom environment variable before cypress tests start with headless mode?
Thanks
From Exposing Environment Variables to the Browser
Alternatively, you can control the NextJs server from Cypress plugins - see Mock Network When Using Next.js getServerSideProps Call