From a2851e0b61b9edaa54cfef33dc94f7ea1cdc7a6f Mon Sep 17 00:00:00 2001 From: Damian Sznajder Date: Tue, 28 May 2019 09:20:09 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Fix=20tests=20on=20ci?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 30999e6..0a06a47 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,7 +27,7 @@ jobs: - run: name: Unit Tests - command: yarn test:ci --collectCoverage=true + command: yarn test:ci - store_artifacts: path: coverage diff --git a/package.json b/package.json index 4a35a61..c81f5af 100644 --- a/package.json +++ b/package.json @@ -16,8 +16,8 @@ "lint": "tslint --project ./tsconfig.json", "typescript": "tsc --noEmit", "release": "release-it", - "test": "jest -u", - "test:ci": "jest --runInBand --coverage --verbose", + "test": "jest --updateSnapshot", + "test:ci": "jest --collectCoverage=true", "test:watch": "jest --watch", "prepare": "yarn clean && bob build" },