32 lines
		
	
	
		
			848 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			848 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| var perfUtil = require('../../angular2/e2e_test/perf_util');
 | |
| 
 | |
| describe('ng2 element injector benchmark', function () {
 | |
| 
 | |
|   var URL = 'benchmarks/src/element_injector/element_injector_benchmark.html';
 | |
| 
 | |
|   afterEach(perfUtil.verifyNoBrowserErrors);
 | |
| 
 | |
|   it('should log the stats for instantiate', function() {
 | |
|     perfUtil.runClickBenchmark({
 | |
|       url: URL,
 | |
|       buttons: ['#instantiate'],
 | |
|       id: 'ng2.elementInjector.instantiate',
 | |
|       params: [{
 | |
|         name: 'iterations', value: 20000, scale: 'linear'
 | |
|       }]
 | |
|     });
 | |
|   });
 | |
| 
 | |
|   it('should log the stats for instantiateDirectives', function() {
 | |
|     perfUtil.runClickBenchmark({
 | |
|       url: URL,
 | |
|       buttons: ['#instantiateDirectives'],
 | |
|       id: 'ng2.elementInjector.instantiateDirectives',
 | |
|       params: [{
 | |
|         name: 'iterations', value: 20000, scale: 'linear'
 | |
|       }]
 | |
|     });
 | |
|   });
 | |
| 
 | |
| });
 |