From 208c16050104aecd43829e21d3bc2ceeea447a31 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Fri, 2 Oct 2020 11:39:56 +0300 Subject: [PATCH] Do not run tests in dist/ dir --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index cd3f73f..982fe9b 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,8 @@ "scripts": { "lint:ts": "tsc --noEmit", "lint:js": "eslint 'src/**/*'", - "test": "jest", - "test:watch": "jest --watch", + "test": "jest src/ test/", + "test:watch": "jest src/ test/ --watch", "start": "node bin/make-workout.js", "format:js": "prettier --write src/", "build": "tsc",