Skip to content
This repository has been archived by the owner on Mar 8, 2020. It is now read-only.

Commit

Permalink
fix wrong dependancy, and fail integration tests fast
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew B White <whitemat@uk.ibm.com>
  • Loading branch information
mbwhite committed Apr 27, 2018
1 parent 6cfe37d commit 06aef7d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/composer-tests-integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"postlicchk": "npm run lint",
"lint": "eslint .",
"test": "exit 0",
"test-tagged": "cucumber-js --tags @cli-generate",
"test-inner": "cucumber-js --tags 'not @cli-report'",
"test-inner-nohsm": "cucumber-js --tags 'not @hsm'",
"test-tagged": "cucumber-js --fail-fast --tags @cli-generate",
"test-inner": "cucumber-js --fail-fast --tags 'not @cli-report'",
"test-inner-nohsm": "cucumber-js --fail-fast --tags 'not @hsm'",
"setup": "npm run pretest && npm run lint && npm run start_verdaccio && node ./scripts/npm_serve",
"int-test": "npm run setup && npm run test-inner && npm run stop_verdaccio",
"int-test-nohsm": "npm run setup && npm run test-inner-nohsm && npm run stop_verdaccio"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ rm -rf ./tutorial-network # business network created from generator in dev
rm -f ./networkadmin.card
rm -f ./composer-report-*

# remove anything already there
docker kill $(docker ps -q) && docker rm $(docker ps -qa) --force


rm -rf ${HOME}/.npmrc
if [ "${DOCKER_FILE}" != "" ]; then
cd ../composer-runtime-hlfv1
Expand Down

0 comments on commit 06aef7d

Please sign in to comment.