Skip to content

Commit

Permalink
Fixing cypress command
Browse files Browse the repository at this point in the history
  • Loading branch information
mcourville committed Aug 18, 2022
1 parent a7a0cb0 commit 3afa890
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ npm-debug.log
yarn-error.log

# Testing
/testing/spec-build
/testing/cypress/downloads
/testing/cypress/screenshots
/testing/cypress/videos
/testing/spec-build
/coverage

# IDEs and editors
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"test": "npm run lint && npm run test:unit",
"test:unit": "karma start config/karma.conf.js",
"test:watch": "npm run lint && npm run test:unit -- --auto-watch --no-single-run",
"test:e2e": "concurrently --success last \"npm run start\" \"npm run cypress:run && npm run stop\"",
"test:e2e": "concurrently --success last \"npm run start\" \"npm run cypress:run\"",
"clean": "npm run clean:app-and-server && npm run clean:testing && npm run clean:data && npm run clean:packages",
"clean:app": "rimraf \"./dist/**/!(server.js)\"",
"clean:server": "rimraf ./dist/server.js",
Expand All @@ -31,7 +31,6 @@
"ci:build:develop": "APP_ENV=develop npm run build:dev",
"ci:build:staging": "APP_ENV=staging npm run build",
"ci:build:prod": "APP_ENV=prod npm run build",
"ci:test:e2e": "concurrently --success last \"npm run start\" \"npm run cypress:run\"",
"ci:clean": "npm run clean:packages",
"ci:zip": "zip /tmp/agora-app.zip -qr9 dist package.json package-lock.json LICENSE",
"mongo:import": "sh ./scripts/mongo-import.sh",
Expand Down

0 comments on commit 3afa890

Please sign in to comment.