Remove hash params from url

Load settings are now stored on the browser window.
This commit is contained in:
Corey Johnson & Kevin Sawicki
2013-06-11 11:17:16 -07:00
parent a57c5c7c93
commit bcc16fbefe
8 changed files with 20 additions and 37 deletions

View File

@@ -18,7 +18,7 @@ module.exports.runSpecSuite = (specSuite, logErrors=true) ->
$ = require 'jquery'
TimeReporter = require 'time-reporter'
reporter = if atom.exitWhenDone
reporter = if atom.getLoadSettings().exitWhenDone
new jasmine.ConsoleReporter(document, logErrors)
else
new AtomReporter()

View File

@@ -7,4 +7,4 @@ try
runSpecSuite "spec-suite"
catch e
console.error(e.stack ? e)
atom.exit(1) if window.location.params.exitWhenDone
atom.exit(1) if atom.getLoadSettings().exitWhenDone