/cypress-tutorials

This repository has the exercises I used to learn Cypress.

Primary LanguageJavaScript

Cypress Tutorials 🛸

This repository has the exercises I used to learn Cypress. 🕵🏼‍


Why Cypress? 💭

  • Setup time is minimal.
  • The execution is quick.
  • Debugging is simple.
  • The graphical user interface is nice.

Installation

  •  cd /your/project/path  
    
  •  npm install cypress --save-dev 
    

Adding npm scripts 🪄

  • 
    "scripts": {
        "cypress": "cypress open"
     }
    
    
  • 
    npm run cypress
    
    

⭐️ KISS -based code is easier to test.