Skip to content

Commit

Permalink
feat: set test env for tests commands
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Apr 29, 2019
1 parent 148a5eb commit a7b057c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"prepare": "npm run build",
"release": "standard-version",
"security": "npm audit",
"test:only": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"test:only": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"test:coverage": "cross-env NODE_ENV=test jest --collectCoverageFrom='src/**/*.js' --coverage",
"pretest": "npm run lint",
"test": "npm run test:coverage",
"test": "cross-env NODE_ENV=test npm run test:coverage",
"defaults": "npm run build && node bin/index.js"
},
"files": [
Expand Down

0 comments on commit a7b057c

Please sign in to comment.