From 610fd66981fcae96742e9d1ffcb750c130d31f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bazyli=20Brzo=CC=81ska?= Date: Wed, 18 Apr 2018 22:58:36 +0200 Subject: [PATCH] tweak jest settings for CI --- package.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index eb9f73a91..53c864106 100644 --- a/package.json +++ b/package.json @@ -95,11 +95,11 @@ "test": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest", "test:integration": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --testMatch \"/test/*.test.js\"", "test:unit": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --testMatch \"/test/*.unittest.js\"", - "travis:integration": "yarn cover:init && yarn cover:integration --ci --maxWorkers 4 && yarn cover:report-min", + "travis:integration": "yarn cover:init && yarn cover:integration --ci --runInBand && yarn cover:report-min", "travis:unit": "yarn cover:init && yarn cover:unit --ci --reporters jest-silent-reporter", "travis:lint": "yarn lint", "travis:benchmark": "yarn benchmark --ci", - "appveyor:integration": "yarn cover:init && yarn cover:integration --ci --reporters jest-silent-reporter --maxWorkers 2 && yarn cover:report-min", + "appveyor:integration": "yarn cover:init && yarn cover:integration --ci --reporters jest-silent-reporter --runInBand && yarn cover:report-min", "appveyor:unit": "yarn cover:init && yarn cover:unit --ci --reporters jest-silent-reporter && yarn cover:report-min", "appveyor:benchmark": "yarn benchmark --ci", "circleci:test": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --ci --reporters jest-silent-reporter", @@ -147,8 +147,7 @@ ], "testEnvironment": "node", "coverageReporters": [ - "json", - "lcov" + "json" ] } }