more docker integration test tweaks

This commit is contained in:
Danny Coates 2018-05-03 23:47:44 -07:00
parent 7d62a23b36
commit 7841dec5d8
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
9 changed files with 39 additions and 62 deletions

View file

@ -28,7 +28,8 @@
"test": "npm-run-all test:*",
"test:backend": "nyc mocha --reporter=min test/backend",
"test:frontend": "cross-env NODE_ENV=development node test/frontend/runner.js && nyc report --reporter=html",
"test-integration": "docker-compose up --abort-on-container-exit --exit-code-from integration-tests --build --remove-orphans --quiet-pull && docker-compose down --rmi local",
"test-integration": "docker-compose up --abort-on-container-exit --exit-code-from integration-tests --build --remove-orphans --quiet-pull && docker-compose down",
"test-integration-stage": "cross-env BASE_URL=https://send.stage.mozaws.net npm run test-integration",
"start": "npm run clean && cross-env NODE_ENV=development webpack-dev-server",
"prod": "node server/prod.js"
},