2015-01-09 21:00:04 -05:00
|
|
|
var perfUtil = require('../../e2e_test_lib/e2e_test/perf_util');
|
2014-12-22 20:50:10 -05:00
|
|
|
|
|
|
|
describe('ng2 element injector benchmark', function () {
|
|
|
|
|
|
|
|
var URL = 'benchmarks/web/element_injector/element_injector_benchmark.html';
|
|
|
|
|
2015-01-09 21:00:04 -05:00
|
|
|
afterEach(perfUtil.verifyNoBrowserErrors);
|
2014-12-22 20:50:10 -05:00
|
|
|
|
|
|
|
it('should log the stats for instantiate', function() {
|
2015-01-09 21:00:04 -05:00
|
|
|
perfUtil.runClickBenchmark({
|
|
|
|
url: URL,
|
2014-12-22 20:50:10 -05:00
|
|
|
buttons: ['#instantiate'],
|
2015-01-09 21:00:04 -05:00
|
|
|
id: 'ng2.elementInjector.instantiate',
|
|
|
|
params: [{
|
|
|
|
name: 'iterations', value: 20000
|
|
|
|
}]
|
2014-12-22 20:50:10 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should log the stats for instantiateDirectives', function() {
|
2015-01-09 21:00:04 -05:00
|
|
|
perfUtil.runClickBenchmark({
|
|
|
|
url: URL,
|
2014-12-22 20:50:10 -05:00
|
|
|
buttons: ['#instantiateDirectives'],
|
2015-01-09 21:00:04 -05:00
|
|
|
id: 'ng2.elementInjector.instantiateDirectives',
|
|
|
|
params: [{
|
|
|
|
name: 'iterations', value: 20000
|
|
|
|
}]
|
2014-12-22 20:50:10 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|