pulsar/benchmark/benchmark-bootstrap.coffee

14 lines
342 B
CoffeeScript
Raw Normal View History

require '../src/window'
Atom = require '../src/atom'
2013-10-08 00:30:07 +04:00
atom = new Atom()
atom.show() unless atom.getLoadSettings().exitWhenDone
window.atom = atom
2013-09-18 01:54:33 +04:00
{runSpecSuite} = require '../spec/jasmine-helper'
atom.openDevTools()
document.title = "Benchmark Suite"
2013-09-06 02:13:23 +04:00
benchmarkSuite = require.resolve('./benchmark-suite')
runSpecSuite(benchmarkSuite, true)