From 091189ee792a4e50ac292fecd7b9f5d2ea92ea40 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 11 Oct 2013 09:07:49 -0700 Subject: [PATCH] Log what specs are running --- tasks/test-task.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/test-task.coffee b/tasks/test-task.coffee index 886cb7255..99b29aefb 100644 --- a/tasks/test-task.coffee +++ b/tasks/test-task.coffee @@ -17,6 +17,7 @@ module.exports = (grunt) -> args: ['test', '-p', atomPath] opts: cwd: packagePath + grunt.log.writeln("Launching #{path.basename(packagePath)} specs.") spawn options, (error, results, code) -> passed = passed and code is 0 callback()