I am trying to use Cypress with an Angular (v. 5) CLI application.
The tests works fine when running locally, because here I can just start the serve command before running the cypress tests.
I tried following the documentation here, but none of the commands seems to be working.
I tried varioues combination, looking like this:
"cypress:run:report": "./node_modules/.bin/cypress run --record --key <key>",
"cypress:run:ci": "start-server-and-test serve:dev http://localhost:4200 cypress:run:report",
"cypress:run:ci2": "npm run -s serve:dev & npm run -s cypress:run:report",
Thanks in advance.