From d7e56c447bd88e50845d27132f93a40989b121ce Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Tue, 17 Dec 2013 15:53:08 -0800 Subject: [PATCH] Remove logging, disable package specs --- tasks/spec-task.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/spec-task.coffee b/tasks/spec-task.coffee index 9cdc24614..b253d9fa4 100644 --- a/tasks/spec-task.coffee +++ b/tasks/spec-task.coffee @@ -32,6 +32,7 @@ module.exports = (grunt) -> modulesDirectory = path.resolve('node_modules') for packageDirectory in fs.readdirSync(modulesDirectory) + break packagePath = path.join(modulesDirectory, packageDirectory) continue unless grunt.file.isDir(path.join(packagePath, 'spec')) continue unless isAtomPackage(packagePath) @@ -58,7 +59,6 @@ module.exports = (grunt) -> cmd: process.env.comspec args: ['/c', 'start', '/wait', appPath, '--test', "--resource-path=#{resourcePath}", "--spec-directory=#{coreSpecsPath}"] - console.log(options) spawn options, (error, results, code) -> packageSpecQueue.concurrency = 2 callback(null, error)