Create new Atom class in spec/benchmark bootstraps

This commit is contained in:
Kevin Sawicki 2013-09-26 09:25:14 -07:00
parent e2d727f838
commit dc8fae12b6
2 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,5 @@
require '../src/atom'
Atom = require '../src/atom'
window.atom = new Atom()
{runSpecSuite} = require '../spec/jasmine-helper'
atom.openDevTools()

View File

@ -1,7 +1,8 @@
try
require '../src/atom'
Atom = require '../src/atom'
require '../src/window'
atom.show()
window.atom = new Atom()
window.atom.show()
{runSpecSuite} = require './jasmine-helper'
document.title = "Spec Suite"