ltsuda / testes-e2e-com-cypress

Repositório de estudo do curso "Testes end-to-end com Cypress" - https://www.udemy.com/course/testes-end-to-end-com-cypress/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Testes end-to-end com Cypress

Sample project to demonstrate end-to-end (e2e) tests written with Cypress running on a CI service.

Pre-requirements

To run this project, you will need:

  • git (I've used version 2.26.2 while writing this doc)
  • nodejs (I've used version 14.17.3 while writing this doc)
  • NPM (I've used version 6.14.13 while writing this doc)
  • Google Chrome (I've used version 92.0.4515.131 while writing this doc)

Note: When installing nodejs, NPM is automatically installed too.

Installation

To install the dev dependencies, run npm install (or npm i for short.)

Configuring the environment variables

Before running the tests, some environment variables need to be set up.

Make a copy of the cypress.env.example.json file as cypress.env.json, and set the appropriate values for all the variables.

Note: cypress.env.json file is not tracked by git.

Running the tests

In this project, you can run tests in interactive and headless modes, and on desktop and tablet viewports.

Headless mode

Run npm test (or npm t for short) to run all tests in headless mode using a desktop viewport.

Run npm run test:tablet to run the appropriate tests in headless mode using a tablet viewport.

Interactive mode

Run npm run cy:open to open the Cypress Test Runner to run tests in interactive mode using a desktop viewport.

Run npm run cy:open:tablet to open the Cypress Test Runner to run tests in interactive mode using a tablet viewport.

About

Repositório de estudo do curso "Testes end-to-end com Cypress" - https://www.udemy.com/course/testes-end-to-end-com-cypress/


Languages

Language:JavaScript 100.0%