From 2eb3b7bf357d01a7f11ba42c457ea271ed752692 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Thu, 5 Sep 2013 15:14:21 -0700 Subject: [PATCH] Always open dev tools before benchmarks are run Otherwise profiles aren't generated. --- benchmark/benchmark-bootstrap.coffee | 2 ++ 1 file changed, 2 insertions(+) diff --git a/benchmark/benchmark-bootstrap.coffee b/benchmark/benchmark-bootstrap.coffee index caa4ce8d3..d8d8e78ae 100644 --- a/benchmark/benchmark-bootstrap.coffee +++ b/benchmark/benchmark-bootstrap.coffee @@ -1,6 +1,8 @@ require 'atom' {runSpecSuite} = require 'jasmine-helper' +atom.openDevTools() + document.title = "Benchmark Suite" benchmarkSuite = require.resolve('./benchmark-suite') runSpecSuite(benchmarkSuite, true)