etherpad-lite/tests/frontend/runner.js
2012-10-08 00:34:29 +02:00

14 lines
No EOL
376 B
JavaScript

$(function(){
//allow cross iframe access
if ((!$.browser.msie) && (!($.browser.mozilla && $.browser.version.indexOf("1.8.") == 0))) {
document.domain = document.domain; // for comet
}
//initalize the test helper
helper.init(function(){
//configure and start the test framework
//mocha.suite.timeout(5000);
mocha.ignoreLeaks();
mocha.run();
});
});