etherpad-lite/tests/frontend/runner.js
Peter 'Pita' Martischka 3d96fe3d86 rewrote the testHelper
2012-10-06 21:29:37 +02:00

12 lines
No EOL
236 B
JavaScript

$(function(){
//allow cross iframe access
document.domain = document.domain;
//initalize the test helper
helper.init();
//configure and start the test framework
mocha.timeout(5000);
mocha.ignoreLeaks();
mocha.run();
});