travis-web/public/javascripts/spec/spec_helper.js
2012-06-25 23:58:27 +02:00

16 lines
230 B
JavaScript

(function() {
require('app');
$('body').append($('<div id="spec_content"></div>'));
Travis.rootElement = '#spec_content';
Travis.initialize();
beforeEach(function() {});
afterEach(function() {});
}).call(this);