mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
Remove hash params from url
Load settings are now stored on the browser window.
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user