rename test suite

This commit is contained in:
Daniel Schep 2019-05-21 11:16:06 -04:00
parent 657510c81a
commit bad4b3ccb6
3 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ install:
- travis_retry npm install
script:
- npm i -g npm
- if [[ -z "$INTEGRATION_TEST" && -z "$DISABLE_TESTS" ]]; then npm test && npm run local-integration-test; fi
- if [[ -z "$INTEGRATION_TEST" && -z "$DISABLE_TESTS" ]]; then npm test && npm run packaging-integration-test; fi
- if [[ ! -z "$DISABLE_TESTS" && ! -z "$LINTING" && -z "$INTEGRATION_TEST" ]]; then
npm run lint; fi
- if [[ ! -z "$INTEGRATION_TEST" && ! -z ${AWS_ACCESS_KEY_ID+x} && "$INTEGRATION_TEST_SUITE"

View File

@ -56,7 +56,7 @@
"lint": "eslint . --cache",
"docs": "node scripts/generate-readme.js",
"integration-test-cleanup": "node scripts/integration-test-cleanup.js",
"local-integration-test": "jest --maxWorkers=5 local-suite",
"packaging-integration-test": "jest --maxWorkers=5 packaging-suite",
"simple-integration-test": "jest --maxWorkers=5 simple-suite",
"complex-integration-test": "jest --maxWorkers=5 integration",
"postinstall": "node ./scripts/postinstall.js"