Browse Source

build: set max workers to 2 for jest

Torkel Ödegaard 8 years ago
parent
commit
b6184a71bd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/grunt/options/exec.js

+ 1 - 1
scripts/grunt/options/exec.js

@@ -3,7 +3,7 @@ module.exports = function(config, grunt) {
 
   var coverage = '';
   if (config.coverage) {
-    coverage = '--coverage --runInBand --logHeapUsage';
+    coverage = '--coverage --maxWorkers 2';
   }
 
   return {