Skip to content

Commit 1eb70e7

Browse files
committed
fix: add NODE_ENV=test to test scripts
1 parent 0200842 commit 1eb70e7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"build": "tsc",
88
"start": "npm run build && node dist/index.js",
99
"format": "prettier --write '**/*.ts'",
10-
"test": "jest",
11-
"test:watch": "jest --watch",
12-
"test:coverage": "jest --coverage",
10+
"test": "NODE_ENV=test jest",
11+
"test:watch": "NODE_ENV=test jest --watch",
12+
"test:coverage": "NODE_ENV=test jest --coverage",
1313
"prepare": "husky install",
1414
"release": "standard-version"
1515
},

0 commit comments

Comments
 (0)