mirror of
				https://github.com/ether/etherpad-lite.git
				synced 2025-10-31 16:21:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			376 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			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();
 | |
|   });
 | |
| }); |