From 84c30ef6c593ba812e46e604aec68a617b1c4567 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 7 Jul 2014 10:26:12 -0700 Subject: [PATCH] Set initial concurrency to 1 on all platforms --- build/tasks/spec-task.coffee | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build/tasks/spec-task.coffee b/build/tasks/spec-task.coffee index 9a2dbc585..b4fdcc8a5 100644 --- a/build/tasks/spec-task.coffee +++ b/build/tasks/spec-task.coffee @@ -53,9 +53,7 @@ module.exports = (grunt) -> continue unless isAtomPackage(packagePath) packageSpecQueue.push(packagePath) - # TODO: Restore concurrency on Windows - packageSpecQueue.concurrency = 1 unless process.platform is 'win32' - + packageSpecQueue.concurrency = 1 packageSpecQueue.drain = -> callback(null, failedPackages) runCoreSpecs = (callback) ->