Explain error if web crashes in acceptance tests

This commit is contained in:
James Allen 2018-06-13 10:11:38 +01:00
parent ea8f2fc7a3
commit f57290382d

View file

@ -207,7 +207,11 @@ test_acceptance_app_stop_service:
docker-compose ${DOCKER_COMPOSE_FLAGS} stop -t 0 test_acceptance redis mongo
test_acceptance_app_run:
docker-compose ${DOCKER_COMPOSE_FLAGS} exec -T test_acceptance npm -q run test:acceptance -- ${MOCHA_ARGS}
@docker-compose ${DOCKER_COMPOSE_FLAGS} exec -T test_acceptance npm -q run test:acceptance -- ${MOCHA_ARGS}; \
if [ $$? -eq 137 ]; then \
echo "\nOh dear, it looks like the web process crashed! Run:\n\n\tdocker-compose logs test_acceptance\n\nto see why"; \
exit 1; \
fi
test_acceptance_modules:
@set -e; \