Cypress: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 2: | Line 2: | ||
source ~/.bashrc | source ~/.bashrc | ||
nvm install 16.13.2 | nvm install 16.13.2 | ||
nvm use | nvm use 16.13.2 | ||
node -v | |||
npm install [email protected] --save-dev | npm install [email protected] --save-dev | ||
npm install | npm install | ||
cd cypress/e2e | |||
npx cypress open | |||
# E2E Testing » Continue » Choose a browser » Firefox | |||
# Start E2E Testing in Firefox | |||
# http://localhost:43599/__/#/specs | |||
</source> | </source> | ||
Revision as of 03:47, 16 November 2023
source ~/.bashrc
nvm install 16.13.2
nvm use 16.13.2
node -v
npm install [email protected] --save-dev
npm install
cd cypress/e2e
npx cypress open
# E2E Testing » Continue » Choose a browser » Firefox
# Start E2E Testing in Firefox
# http://localhost:43599/__/#/specs
References
| ||