pad.pub0.org/tests/frontend/runner.js

12 lines
236 B
JavaScript
Raw Normal View History

$(function(){
//allow cross iframe access
document.domain = document.domain;
//initalize the test helper
2012-10-06 19:29:37 +00:00
helper.init();
//configure and start the test framework
2012-10-06 19:29:37 +00:00
mocha.timeout(5000);
mocha.ignoreLeaks();
mocha.run();
});