Skip to content

Commit

Permalink
Always specify chrome for cypress
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Reynolds <[email protected]>
  • Loading branch information
gsreynolds committed Nov 27, 2023
1 parent f64555c commit 5b1a6e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@
"build": "npx genversion src/config/version.js --semi --es6 && vite build",
"genversion": "npx genversion src/config/version.js --semi --es6",
"jest": "npx jest",
"cypress:open": "npx cypress open",
"cypress:run:local": "npx cypress run",
"cypress:run:record": "npx cypress run --record --key ${CYPRESS_RECORD_KEY}",
"cypress:run:ci": "npx cypress run --group 'e2e' --browser chrome --headless --parallel --record --key ${CYPRESS_RECORD_KEY} --ci-build-id $(date +'%s')",
"cypress:open": "npx cypress open --browser chrome --e2e",
"cypress:run:local": "npx cypress run --browser chrome --e2e",
"cypress:run:record": "npx cypress run --browser chrome --e2e --record --key ${CYPRESS_RECORD_KEY}",
"cypress:run:ci": "npx cypress run --browser chrome --e2e --headless --parallel --record --group 'e2e' --key ${CYPRESS_RECORD_KEY} --ci-build-id $(date +'%s')",
"preview": "vite preview",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx --exit-on-fatal-error",
"format": "npx prettier-eslint --write '*.js' 'src/**/*.js' 'src/**/*.jsx' 'cypress/**/*.js'",
Expand Down

0 comments on commit 5b1a6e4

Please sign in to comment.