diff --git a/services/web/Jenkinsfile b/services/web/Jenkinsfile index 57df9c7091..152d980787 100644 --- a/services/web/Jenkinsfile +++ b/services/web/Jenkinsfile @@ -60,7 +60,7 @@ pipeline { sh 'git config --global core.logallrefupdates false' sh 'mv app/views/external/robots.txt public/robots.txt' sh 'mv app/views/external/googlebdb0f8f7f4a17241.html public/googlebdb0f8f7f4a17241.html' - sh 'npm install' + sh 'npm --quiet install' sh 'npm rebuild' // It's too easy to end up shrinkwrapping to an outdated version of translations. // Ensure translations are always latest, regardless of shrinkwrap diff --git a/services/web/Makefile b/services/web/Makefile index 558b59e5e6..046a0c1a81 100644 --- a/services/web/Makefile +++ b/services/web/Makefile @@ -74,7 +74,9 @@ test_acceptance_modules: docker-shared.yml test_acceptance_module: docker-shared.yml cd $(MODULE) && make test_acceptance -ci: install test +ci: + MOCHA_ARGS="--reporter tap" \ + $(MAKE) install test .PHONY: all add install update test test_unit test_unit_frontend test_acceptance \