Skip to content

Latest commit

 

History

History

cypress

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Learn Cypress

Start From Scratch

mkdir cy-test
cd cy-test
# by npm
npm init -y
npm i cypress --save-dev
npx cypress open

# or by yarn
yarn init -y
yarn add -D cypress
npx cypress open

Check Opening Cypress