Skip to content

Commit b024a46

Browse files
authored
disable jest-silent-reporter
1 parent 610fd66 commit b024a46

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,13 @@
9696
"test:integration": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/test/*.test.js\"",
9797
"test:unit": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/test/*.unittest.js\"",
9898
"travis:integration": "yarn cover:init && yarn cover:integration --ci --runInBand && yarn cover:report-min",
99-
"travis:unit": "yarn cover:init && yarn cover:unit --ci --reporters jest-silent-reporter",
99+
"travis:unit": "yarn cover:init && yarn cover:unit --ci",
100100
"travis:lint": "yarn lint",
101101
"travis:benchmark": "yarn benchmark --ci",
102-
"appveyor:integration": "yarn cover:init && yarn cover:integration --ci --reporters jest-silent-reporter --runInBand && yarn cover:report-min",
103-
"appveyor:unit": "yarn cover:init && yarn cover:unit --ci --reporters jest-silent-reporter && yarn cover:report-min",
102+
"appveyor:integration": "yarn cover:init && yarn cover:integration --ci --runInBand && yarn cover:report-min",
103+
"appveyor:unit": "yarn cover:init && yarn cover:unit --ci && yarn cover:report-min",
104104
"appveyor:benchmark": "yarn benchmark --ci",
105-
"circleci:test": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --ci --reporters jest-silent-reporter",
105+
"circleci:test": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --ci",
106106
"circleci:lint": "yarn lint",
107107
"build:examples": "cd examples && node buildAll.js",
108108
"pretest": "yarn lint",
@@ -112,8 +112,8 @@
112112
"type-lint": "tsc --pretty",
113113
"fix": "yarn code-lint --fix",
114114
"pretty": "prettier \"setup/**/*.js\" \"lib/**/*.js\" \"bin/*.js\" \"hot/*.js\" \"buildin/*.js\" \"test/*.js\" \"test/**/webpack.config.js\" \"examples/**/webpack.config.js\" \"schemas/**/*.js\" \"declarations.d.ts\" --write",
115-
"schema-lint": "node --max-old-space-size=4096 node_modules/jest-cli/bin/jest --reporters jest-silent-reporter --testMatch \"<rootDir>/test/*.lint.js\"",
116-
"benchmark": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --reporters jest-silent-reporter --testMatch \"<rootDir>/test/*.benchmark.js\" --runInBand",
115+
"schema-lint": "node --max-old-space-size=4096 node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/test/*.lint.js\"",
116+
"benchmark": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/test/*.benchmark.js\" --runInBand",
117117
"cover": "yarn cover:init && yarn cover:all && yarn cover:report",
118118
"cover:init": "rimraf coverage",
119119
"cover:all": "node --max-old-space-size=4096 node_modules/jest-cli/bin/jest --coverage",
@@ -143,7 +143,8 @@
143143
"coverageDirectory": "<rootDir>/coverage",
144144
"coveragePathIgnorePatterns": [
145145
"\\.runtime\\.js$",
146-
"<rootDir>/test/"
146+
"<rootDir>/test/",
147+
"<rootDir>/schemas/"
147148
],
148149
"testEnvironment": "node",
149150
"coverageReporters": [

0 commit comments

Comments
 (0)