Skip to content

Latest commit

 

History

History
63 lines (39 loc) · 1.2 KB

README.md

File metadata and controls

63 lines (39 loc) · 1.2 KB

Cypress Starter Kit

ErgoServ's Starter Kit for Cypress End-to-End testing.

  1. Download and extract Starter Kit https://github.com/ergoserv/cypress-starter-kit
  2. Copy Starter Kit files to the needed folder (including hidden files like .gitignore!)
  3. Update README.md file (remove Cypress Starter Kit block, rename project)
  4. Setup and run

ProjectName Tests

Cypress testing suite for ProjectName project.

Setup

  1. Install Node

  2. Install https://dotenvx.com/

  3. Run setup script

bin/setup
  1. Customize cypress.env.json and /config/targets/.env.* as needed.

Config

  • cypress.config.js - main config. Section env contains all env vars with default values.
  • cypress.env.json - env config for local development and run on local target.
  • config/targets/.env.* - testing target configs.

Run & Open Cypress

bin/run
npx cypress run

bin/open
npx cypress open
bin/run-staging
bin/run-production

bin/open-staging
bin/open-production

Development

  • Add new env vars to cypress.config.js with default values for the reference.
  • Always run code style check: bin/eslint

ErgoServ