Do not run tests in dist/ dir

This commit is contained in:
Rene Saarsoo 2020-10-02 11:39:56 +03:00
parent 1df9f8e1d7
commit 208c160501
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@
"scripts": { "scripts": {
"lint:ts": "tsc --noEmit", "lint:ts": "tsc --noEmit",
"lint:js": "eslint 'src/**/*'", "lint:js": "eslint 'src/**/*'",
"test": "jest", "test": "jest src/ test/",
"test:watch": "jest --watch", "test:watch": "jest src/ test/ --watch",
"start": "node bin/make-workout.js", "start": "node bin/make-workout.js",
"format:js": "prettier --write src/", "format:js": "prettier --write src/",
"build": "tsc", "build": "tsc",