From 187263173bd70924d1e3e156f9c28de021acc18a Mon Sep 17 00:00:00 2001 From: probablycorey Date: Tue, 26 Mar 2013 14:57:03 -0700 Subject: [PATCH] Only exit specs on exceptions when `exitWhenDone` is true --- spec/spec-bootstrap.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/spec-bootstrap.coffee b/spec/spec-bootstrap.coffee index 1b0ffcd48..f3a961207 100644 --- a/spec/spec-bootstrap.coffee +++ b/spec/spec-bootstrap.coffee @@ -7,4 +7,4 @@ try runSpecSuite "spec-suite" catch e console.error(e.stack) - atom.exit(1) + atom.exit(1) if window.location.params.exitWhenDone