Cypress is a JavaScript End to End Testing framework.
It builds on Mocha and Chai, which are baked into it.
npm install cypress --save-dev
# Using full path:
./node_modules/.bin/cypress open
# Or with npm bin shortcut:
$(npm bin)/cypress open
{
"scripts": {
"cypress:open": "cypress open"
}
}