diff --git a/services/web/docker-compose.yml b/services/web/docker-compose.yml index b6649b65d3..5a668bc4a3 100644 --- a/services/web/docker-compose.yml +++ b/services/web/docker-compose.yml @@ -29,7 +29,7 @@ services: volumes: - .:/app working_dir: /app - command: npm run test:frontend + command: npm run test:frontend -- --single-run redis: image: redis diff --git a/services/web/package.json b/services/web/package.json index 75b83e6ac6..895f979f15 100644 --- a/services/web/package.json +++ b/services/web/package.json @@ -15,7 +15,7 @@ "test:acceptance:dir": "npm -q run test:acceptance:wait_for_app && npm -q run test:acceptance:run -- $@", "test:acceptance": "npm -q run test:acceptance:dir -- $@ test/acceptance/js", "test:unit": "npm -q run compile && bin/unit_test $@", - "test:frontend": "karma start --single-run", + "test:frontend": "karma start", "compile": "make compile", "start": "npm -q run compile && node $NODE_APP_OPTIONS app.js", "nodemon": "nodemon --config nodemon.json",