mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
perf(cli): make jest tests faster (#8453)
This commit is contained in:
parent
380f33a614
commit
84332ae68f
@ -15,15 +15,18 @@ export function test(command: any) {
|
|||||||
watch: command.watch,
|
watch: command.watch,
|
||||||
config: JEST_CONFIG_FILE,
|
config: JEST_CONFIG_FILE,
|
||||||
clearCache: command.clearCache,
|
clearCache: command.clearCache,
|
||||||
|
// make jest tests faster
|
||||||
|
// see: https://ivantanev.com/make-jest-faster/
|
||||||
|
maxWorkers: '50%',
|
||||||
} as any;
|
} as any;
|
||||||
|
|
||||||
runCLI(config, [ROOT])
|
runCLI(config, [ROOT])
|
||||||
.then(response => {
|
.then((response) => {
|
||||||
if (!response.results.success && !command.watch) {
|
if (!response.results.success && !command.watch) {
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch((err) => {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
|
|
||||||
if (!command.watch) {
|
if (!command.watch) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user