etherpad-lite/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 21:29:37 +02:00
helper.init();
//configure and start the test framework
2012-10-06 21:29:37 +02:00
mocha.timeout(5000);
mocha.ignoreLeaks();
mocha.run();
});