mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-20 06:29:53 +01:00
12 lines
No EOL
236 B
JavaScript
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();
|
|
}); |