2015-03-02 17:01:02 -05:00
|
|
|
var perfUtil = require('angular2/src/test_lib/perf_util');
|
2014-12-22 20:50:10 -05:00
|
|
|
|
|
|
|
describe('ng2 element injector benchmark', function () {
|
|
|
|
|
2015-02-02 19:25:34 -05:00
|
|
|
var URL = 'benchmarks/src/element_injector/element_injector_benchmark.html';
|
2014-12-22 20:50:10 -05:00
|
|
|
|
2015-01-09 21:00:04 -05:00
|
|
|
afterEach(perfUtil.verifyNoBrowserErrors);
|
2014-12-22 20:50:10 -05:00
|
|
|
|
2015-02-11 13:13:49 -05:00
|
|
|
it('should log the stats for instantiate', function(done) {
|
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',
|
2015-03-27 13:37:02 -04:00
|
|
|
params: [{
|
|
|
|
name: 'iterations', value: 20000, scale: 'linear'
|
|
|
|
}],
|
|
|
|
microMetrics: {
|
|
|
|
'instantiateAvg': 'avg time for injection (in ms)'
|
|
|
|
}
|
2015-02-11 13:13:49 -05:00
|
|
|
}).then(done, done.fail);
|
2014-12-22 20:50:10 -05:00
|
|
|
});
|
|
|
|
|
2015-02-11 13:13:49 -05:00
|
|
|
it('should log the stats for instantiateDirectives', function(done) {
|
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',
|
2015-03-27 13:37:02 -04:00
|
|
|
params: [{
|
|
|
|
name: 'iterations', value: 20000, scale: 'linear'
|
|
|
|
}],
|
|
|
|
microMetrics: {
|
|
|
|
'instantiateAvg': 'avg time for injection (in ms)'
|
|
|
|
}
|
2015-02-11 13:13:49 -05:00
|
|
|
}).then(done, done.fail);
|
2014-12-22 20:50:10 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|