Hi, I know that when I run `npm i -D cypress` comm...
# best-practices
b
Hi, I know that when I run
npm i -D cypress
command, cypress installs node modules in the project folder and a Cypress cache folder somewhere in
C:/Users/AppData/Local
that is other than the project folder. There is an env variable
CYPRESS_CACHE_FOLDER
using which we can override that path. I wanted to ask if it is a good practice to set the cypress cache folder in the current project root path? Something like:
CYPRESS_CACHE_FOLDER=./cypressCache
If I integrate my project with a CI/CD then isn't it better to keep all the cypress dependencies and binaries in same project folder root?