cypress-io / cypress-example-kitchensink

This is an example app used to showcase Cypress.io testing.
https://example.cypress.io/
MIT License
1.2k stars 2.2k forks source link

chore: extend package.json scripts for Edge and Firefox #867

Closed MikeMcC399 closed 1 month ago

MikeMcC399 commented 1 month ago

Issue

package.json contains the following script definitions to start the server and run Cypress under Chrome without recording:

"e2e:chrome": "cypress run --browser chrome",
"test:ci:chrome": "run-p --race start e2e:chrome",

Equivalent scripts for Edge and Firefox browsers are missing.

Change

Add scripts:

Verification

Ubuntu 22.04.4 LTS, Node.js 20.16.0 LTS

git clone https://github.com/cypress-io/cypress-example-kitchensink
cd cypress-example-kitchensink
npm ci
npm run test:ci:edge
npm run test:ci:firefox
cypress-app-bot commented 1 month ago