perf(cli): make jest tests faster (#8453)

This commit is contained in:
neverland 2021-04-03 13:24:17 +08:00 committed by GitHub
parent 380f33a614
commit 84332ae68f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,15 +15,18 @@ export function test(command: any) {
watch: command.watch,
config: JEST_CONFIG_FILE,
clearCache: command.clearCache,
// make jest tests faster
// see: https://ivantanev.com/make-jest-faster/
maxWorkers: '50%',
} as any;
runCLI(config, [ROOT])
.then(response => {
.then((response) => {
if (!response.results.success && !command.watch) {
process.exit(1);
}
})
.catch(err => {
.catch((err) => {
console.log(err);
if (!command.watch) {