Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 331 Bytes

File metadata and controls

23 lines (17 loc) · 331 Bytes

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