Notes on working with Cypress JavaScript end-to-end testing framework.
Install locally (per project) as a dev dependency:
npm install cypress --save-dev
Run headless:
cypress run
Run from app:
cypress open
function cypress() {
( ./node_modules/.bin/cypress $* )
}