The `e2e_test` folder in `angular2` never contained e2e tests but was used to store utilities for writing e2e/perf tests. A better place for them is `angular2/src/test_lib`. Closes #855
		
			
				
	
	
		
			36 lines
		
	
	
		
			1017 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1017 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var perfUtil = require('angular2/src/test_lib/perf_util');
 | 
						|
 | 
						|
describe('ng2 naive infinite scroll benchmark', function () {
 | 
						|
 | 
						|
  var URL = 'benchmarks/src/naive_infinite_scroll/index.html';
 | 
						|
 | 
						|
  afterEach(perfUtil.verifyNoBrowserErrors);
 | 
						|
 | 
						|
  [1, 2, 4].forEach(function(appSize) {
 | 
						|
    it('should run scroll benchmark and collect stats for appSize = ' +
 | 
						|
        appSize, function(done) {
 | 
						|
      perfUtil.runBenchmark({
 | 
						|
        url: URL,
 | 
						|
        id: 'ng2.naive_infinite_scroll',
 | 
						|
        work: function() {
 | 
						|
          $('#reset-btn').click();
 | 
						|
          $('#run-btn').click();
 | 
						|
          browser.wait(() => {
 | 
						|
            return $('#done').getText().then(
 | 
						|
              function() { return true; },
 | 
						|
              function() { return false; });
 | 
						|
            }, 10000);
 | 
						|
        },
 | 
						|
        params: [{
 | 
						|
          name: 'appSize', value: appSize
 | 
						|
        }, {
 | 
						|
          name: 'iterationCount', value: 20, scale: 'linear'
 | 
						|
        }, {
 | 
						|
          name: 'scrollIncrement', value: 40
 | 
						|
        }]
 | 
						|
      }).then(done, done.fail);
 | 
						|
    });
 | 
						|
  });
 | 
						|
 | 
						|
});
 |