Skip to content

Commit 4f21554

Browse files
committed
Fix GitKraken prepush with NODE_ENV=test
1 parent 3f7f999 commit 4f21554

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/ReactNative/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"clean:all": "rm -rf .expo && yarn clean && yarn clean:node_modules",
2121
"tsc": "tsc",
2222
"start": "expo start",
23-
"test": "jest"
23+
"test": "jest --verbose"
2424
},
2525
"dependencies": {
2626
"expo": "^36.0.2",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"build": "lerna run build",
99
"dist": "lerna run dist",
1010
"prepublishOnly": "lerna run prepublishOnly",
11-
"test": "lerna run test --stream",
12-
"test:e2e": "lerna run test:e2e --stream --concurrency 1",
11+
"test": "NODE_ENV=test lerna run test --stream",
12+
"test:e2e": "NODE_ENV=test lerna run test:e2e --stream --concurrency 1",
1313
"test:coverage": "lerna run test:coverage --stream",
1414
"format": "prettier --write \"**/*\"",
1515
"lint": "run-p tsc eslint stylelint",

0 commit comments

Comments
 (0)