|
110 | 110 | "test:integration": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/test/*.test.js\"", |
111 | 111 | "test:basic": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/te{st/TestCasesNormal,st/StatsTestCases,st/ConfigTestCases}.test.js\"", |
112 | 112 | "test:unit": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/test/*.unittest.js\"", |
113 | | - "travis:integration": "yarn cover:init && yarn cover:integration --ci $JEST", |
114 | | - "travis:basic": "yarn test:basic --ci $JEST", |
115 | | - "travis:lint-unit": "yarn lint && yarn cover:init && yarn cover:unit --ci $JEST", |
| 113 | + "travis:integration": "yarn cover:integration --ci $JEST", |
| 114 | + "travis:basic": "yarn cover:basic --ci $JEST", |
| 115 | + "travis:lintunit": "yarn lint && yarn cover:unit --ci $JEST", |
116 | 116 | "travis:benchmark": "yarn benchmark --ci", |
117 | | - "appveyor:integration": "yarn cover:init && yarn cover:integration --ci %JEST%", |
118 | | - "appveyor:unit": "yarn cover:init && yarn cover:unit --ci %JEST%", |
| 117 | + "appveyor:integration": "yarn cover:integration --ci %JEST%", |
| 118 | + "appveyor:unit": "yarn cover:unit --ci %JEST%", |
119 | 119 | "appveyor:benchmark": "yarn benchmark --ci", |
120 | 120 | "build:examples": "cd examples && node buildAll.js", |
121 | 121 | "pretest": "yarn lint", |
|
129 | 129 | "pretty": "prettier --loglevel warn --write \"*.{ts,js,json,yml,yaml}\" \"{setup,lib,bin,hot,buildin,benchmark,tooling,schemas}/**/*.{js,json}\" \"test/*.js\" \"test/{configCases,watchCases,statsCases,hotCases}/**/webpack.config.js\" \"examples/**/webpack.config.js\"", |
130 | 130 | "jest-lint": "node --max-old-space-size=4096 node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/test/*.lint.js\" --no-verbose", |
131 | 131 | "benchmark": "node --max-old-space-size=4096 --trace-deprecation node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/test/*.benchmark.js\" --runInBand", |
132 | | - "cover": "yarn cover:init && yarn cover:all && yarn cover:report", |
133 | | - "cover:init": "rimraf coverage", |
| 132 | + "cover": "yarn cover:all && yarn cover:report", |
134 | 133 | "cover:all": "node --max-old-space-size=4096 node_modules/jest-cli/bin/jest --coverage", |
| 134 | + "cover:basic": "node --max-old-space-size=4096 node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/te{st/TestCasesNormal,st/StatsTestCases,st/ConfigTestCases}.test.js\" --coverage", |
135 | 135 | "cover:integration": "node --max-old-space-size=4096 node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/test/*.test.js\" --coverage", |
136 | 136 | "cover:unit": "node --max-old-space-size=4096 node_modules/jest-cli/bin/jest --testMatch \"<rootDir>/test/*.unittest.js\" --coverage", |
137 | 137 | "cover:report": "istanbul report" |
|
0 commit comments