12 lines
		
	
	
		
			178 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			178 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| var test = require('../../');
 | |
| 
 | |
| test('double end', function (t) {
 | |
|     function doEnd() {
 | |
|         t.end();
 | |
|     }
 | |
| 
 | |
|     t.equal(1 + 1, 2);
 | |
|     t.end();
 | |
|     setTimeout(doEnd, 5);
 | |
| });
 | 
