|
96 | 96 | "test:integration": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/test/*.test.js\"", |
97 | 97 | "test:unit": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/test/*.unittest.js\"", |
98 | 98 | "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", |
100 | 100 | "travis:lint": "yarn lint", |
101 | 101 | "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", |
104 | 104 | "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", |
106 | 106 | "circleci:lint": "yarn lint", |
107 | 107 | "build:examples": "cd examples && node buildAll.js", |
108 | 108 | "pretest": "yarn lint", |
|
112 | 112 | "type-lint": "tsc --pretty", |
113 | 113 | "fix": "yarn code-lint --fix", |
114 | 114 | "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", |
117 | 117 | "cover": "yarn cover:init && yarn cover:all && yarn cover:report", |
118 | 118 | "cover:init": "rimraf coverage", |
119 | 119 | "cover:all": "node --max-old-space-size=4096 node_modules/jest-cli/bin/jest --coverage", |
|
143 | 143 | "coverageDirectory": "<rootDir>/coverage", |
144 | 144 | "coveragePathIgnorePatterns": [ |
145 | 145 | "\\.runtime\\.js$", |
146 | | - "<rootDir>/test/" |
| 146 | + "<rootDir>/test/", |
| 147 | + "<rootDir>/schemas/" |
147 | 148 | ], |
148 | 149 | "testEnvironment": "node", |
149 | 150 | "coverageReporters": [ |
|
0 commit comments