mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-13 08:44:12 +03:00
23957d7f66
Specs seem to be green but hang on what I'm assuming to be a long GC pause near the end. I need to investigate what's going on memory wise.
19 lines
535 B
CoffeeScript
19 lines
535 B
CoffeeScript
# Start the crash reporter before anything else.
|
|
require('crash-reporter').start(productName: 'Atom', companyName: 'GitHub')
|
|
|
|
try
|
|
require '../src/window'
|
|
Atom = require '../src/atom'
|
|
window.atom = Atom.loadOrCreate('spec')
|
|
window.atom.show() unless atom.getLoadSettings().exitWhenDone
|
|
{runSpecSuite} = require './jasmine-helper'
|
|
|
|
document.title = "Spec Suite"
|
|
runSpecSuite './spec-suite'
|
|
catch error
|
|
if atom?.getLoadSettings().exitWhenDone
|
|
console.error(error.stack ? error)
|
|
atom.exit(1)
|
|
else
|
|
throw error
|