From bc8a5f4b2342436faf4c5651d120205b2eecb695 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 16 Jun 2014 10:03:29 -0700 Subject: [PATCH] Fail on windows if specs fail --- build/tasks/spec-task.coffee | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build/tasks/spec-task.coffee b/build/tasks/spec-task.coffee index 6ade6124e..9a2dbc585 100644 --- a/build/tasks/spec-task.coffee +++ b/build/tasks/spec-task.coffee @@ -105,7 +105,4 @@ module.exports = (grunt) -> failures.push "atom core" if coreSpecFailed grunt.log.error("[Error]".red + " #{failures.join(', ')} spec(s) failed") if failures.length > 0 - if process.platform is 'win32' - done() # TODO remove once all specs consistently pass - else - done(!coreSpecFailed and failedPackages.length == 0) + done(!coreSpecFailed and failedPackages.length == 0)