From c0cc0021346aa72e7f74d3e556bce342d2ce646b Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 14 Oct 2013 11:39:29 -0700 Subject: [PATCH] Log empty line after specs complete --- tasks/spec-task.coffee | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasks/spec-task.coffee b/tasks/spec-task.coffee index 719c03e4e..ae661a555 100644 --- a/tasks/spec-task.coffee +++ b/tasks/spec-task.coffee @@ -25,6 +25,7 @@ module.exports = (grunt) -> env: _.extend({}, process.env, ATOM_PATH: rootDir) grunt.log.writeln("Launching #{path.basename(packagePath)} specs.") spawn options, (error, results, code) -> + grunt.log.writeln() passed = passed and code is 0 callback() @@ -48,6 +49,7 @@ module.exports = (grunt) -> cmd: appPath args: ['--test', "--resource-path=#{resourcePath}", "--spec-directory=#{coreSpecsPath}"] spawn options, (error, results, code) -> + grunt.log.writeln() packageSpecQueue.concurrency = 2 callback(null, code is 0)