Skip to content

Commit

Permalink
Eliminate retries when e2e tests are run locally
Browse files Browse the repository at this point in the history
  • Loading branch information
alisman committed Sep 23, 2022
1 parent 994c9f5 commit ac5ab41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
"checkIncorrectImportStatements": "./scripts/check_incorrect_import_statements.sh",
"syncmock": "node src/test/fetchMockData.js --diff",
"e2e:spinup": "./scripts/e2e.sh",
"e2e:local": "export CBIOPORTAL_URL=http://localhost:8080 && export && export SCREENSHOT_DIRECTORY=/local/screenshots/ && cd end-to-end-test && yarn run test-webdriver-manager-local",
"e2e:remote": "export CBIOPORTAL_URL=https://www.cbioportal.org && export RETRIES=0 && export SCREENSHOT_DIRECTORY=/remote/screenshots/ && rm -r -f end-to-end-test/shared/results && cd end-to-end-test && yarn run test-webdriver-manager-remote",
"e2e:local": "export RETRIES=0 && export CBIOPORTAL_URL=http://localhost:8080 && export && export SCREENSHOT_DIRECTORY=/local/screenshots/ && cd end-to-end-test && yarn run test-webdriver-manager-local",
"e2e:remote": "export RETRIES=0 export CBIOPORTAL_URL=https://www.cbioportal.org && export RETRIES=0 && export SCREENSHOT_DIRECTORY=/remote/screenshots/ && rm -r -f end-to-end-test/shared/results && cd end-to-end-test && yarn run test-webdriver-manager-remote",
"e2e:report": "npx http-server end-to-end-test -o /shared/imageCompare.html -p 8089"
},
"engines": {
Expand Down

0 comments on commit ac5ab41

Please sign in to comment.