38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
var perfUtil = require('angular2/src/test_lib/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(done) {
|
|
perfUtil.runClickBenchmark({
|
|
url: URL,
|
|
buttons: ['#instantiate'],
|
|
id: 'ng2.elementInjector.instantiate',
|
|
params: [{
|
|
name: 'iterations', value: 20000, scale: 'linear'
|
|
}],
|
|
microMetrics: {
|
|
'instantiateAvg': 'avg time for injection (in ms)'
|
|
}
|
|
}).then(done, done.fail);
|
|
});
|
|
|
|
it('should log the stats for instantiateDirectives', function(done) {
|
|
perfUtil.runClickBenchmark({
|
|
url: URL,
|
|
buttons: ['#instantiateDirectives'],
|
|
id: 'ng2.elementInjector.instantiateDirectives',
|
|
params: [{
|
|
name: 'iterations', value: 20000, scale: 'linear'
|
|
}],
|
|
microMetrics: {
|
|
'instantiateAvg': 'avg time for injection (in ms)'
|
|
}
|
|
}).then(done, done.fail);
|
|
});
|
|
|
|
});
|