From 2058669eae62cbdada8a3f09be0a1ab148ff8a6f Mon Sep 17 00:00:00 2001 From: Thibaud Colas Date: Sun, 28 May 2017 22:06:30 +0300 Subject: [PATCH] Use runInBand to make Jest tests faster in CI env (#3618) See https://facebook.github.io/jest/docs/troubleshooting.html#tests-are-extremely-slow-on-docker-and-or-continuous-integration-ci-server for further details. --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 9d07c04af4..87c7cba4cd 100644 --- a/circle.yml +++ b/circle.yml @@ -14,4 +14,4 @@ test: - npm run lint - scss-lint - python -u runtests.py - - npm run test:unit:coverage + - npm run test:unit:coverage -- --runInBand