From dd7874e176d44b98dcf12bf468a9b912aea6350b Mon Sep 17 00:00:00 2001 From: Adrien Di Mascio Date: Wed, 24 Jul 2019 09:43:30 +0200 Subject: [PATCH] [circleci] use runInBand inside circleCI on CircleCI platform, it's a more or less official recommandation, cf. https://github.com/facebook/jest/issues/1524#issuecomment-262366820 and https://github.com/facebook/jest/issues/5239#issuecomment-355867359 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cd422f914c..b5a9321c72 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,7 +14,7 @@ jobs: steps: - checkout - run: yarn - - run: yarn test:unit + - run: yarn test:unit --runInBand - run: yarn codecov workflows: