npm -i init
After answering the init command questions, a package.json file will be created in the project:npm install cypress --save-dev
Since we add the dev-dev parameter, we will see the dependency in the package.json file from now on. Any time, the dependencies can be updated with "npm update" commandnode_modules/.bin/cypress open
We are ready to create our first spec file. We can define suites ("describe") including numerous tests ("it") in this spec file. On the test runner, when we select the test, it will run on the chosen browser:"node_modules/.bin/cypress run" or "npx cypress run"
"npm run cy:run -- --spec "cypress/integration/MyTest.js""
Additional parameters can be attached like,--headed --browser chrome