From 2ae46734db4eaf52009731d5e25fbcf58d692288 Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Tue, 17 Dec 2013 10:07:55 -0800 Subject: [PATCH] Debug output --- tasks/spec-task.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/spec-task.coffee b/tasks/spec-task.coffee index 6b50388f2..671fd21aa 100644 --- a/tasks/spec-task.coffee +++ b/tasks/spec-task.coffee @@ -26,7 +26,7 @@ module.exports = (grunt) -> env: _.extend({}, process.env, ATOM_PATH: rootDir) grunt.verbose.writeln "Launching #{path.basename(packagePath)} specs." spawn options, (error, results, code) -> - + failedPackages.push path.basename(packagePath) if error callback() @@ -52,6 +52,7 @@ module.exports = (grunt) -> options = cmd: appPath args: ['--test', "--resource-path=#{resourcePath}", "--spec-directory=#{coreSpecsPath}"] + console.log options spawn options, (error, results, code) -> packageSpecQueue.concurrency = 2 callback(null, error)