Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/44-run-test-on-more-browsers #60

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@
"generate-docs": "npm run task -- build:app:docs:all",
"quick": "npm run task -- build:quick",
"watch": "npm run task -- watch:quick",
"cypress:open": "cypress open --browser chrome --env click-wait=500",
"cypress:run": "cypress run --browser chrome --env click-wait=50"
"cypress:open": "cypress open --env click-wait=500",
"cypress:run:chrome": "cypress run --browser chrome --env click-wait=50",
"cypress:run:firefox": "cypress run --browser firefox --env click-wait=50",
"cypress:run:edge": "cypress run --browser edge --env click-wait=50",
"cypress:run:chromium": "cypress run --browser chromium --env click-wait=50"
},
"repository": {
"type": "git",
Expand Down