Files
atom/benchmark/benchmark-bootstrap.coffee
Corey Johnson 2eb3b7bf35 Always open dev tools before benchmarks are run
Otherwise profiles aren't generated.
2013-09-10 14:51:09 -07:00

9 lines
203 B
CoffeeScript

require 'atom'
{runSpecSuite} = require 'jasmine-helper'
atom.openDevTools()
document.title = "Benchmark Suite"
benchmarkSuite = require.resolve('./benchmark-suite')
runSpecSuite(benchmarkSuite, true)