2015-03-02 14:01:02 -08:00
|
|
|
var perfUtil = require('angular2/src/test_lib/perf_util');
|
2015-01-09 18:00:04 -08:00
|
|
|
|
|
|
|
describe('ng2 selector benchmark', function () {
|
|
|
|
|
2015-02-02 16:25:34 -08:00
|
|
|
var URL = 'benchmarks/src/compiler/selector_benchmark.html';
|
2015-01-09 18:00:04 -08:00
|
|
|
|
|
|
|
afterEach(perfUtil.verifyNoBrowserErrors);
|
|
|
|
|
2015-02-11 10:13:49 -08:00
|
|
|
it('should log parse stats', function(done) {
|
2015-01-09 18:00:04 -08:00
|
|
|
perfUtil.runClickBenchmark({
|
|
|
|
url: URL,
|
|
|
|
buttons: ['#parse'],
|
|
|
|
id: 'ng2.selector.parse',
|
|
|
|
params: [{
|
2015-01-15 15:14:54 -08:00
|
|
|
name: 'selectors', value: 10000, scale: 'linear'
|
2015-01-09 18:00:04 -08:00
|
|
|
}]
|
2015-02-11 10:13:49 -08:00
|
|
|
}).then(done, done.fail);
|
2015-01-09 18:00:04 -08:00
|
|
|
});
|
|
|
|
|
2015-02-11 10:13:49 -08:00
|
|
|
it('should log addSelectable stats', function(done) {
|
2015-01-09 18:00:04 -08:00
|
|
|
perfUtil.runClickBenchmark({
|
2015-01-16 12:10:28 -08:00
|
|
|
url: URL,
|
2015-01-09 18:00:04 -08:00
|
|
|
buttons: ['#addSelectable'],
|
|
|
|
id: 'ng2.selector.addSelectable',
|
|
|
|
params: [{
|
2015-01-15 15:14:54 -08:00
|
|
|
name: 'selectors', value: 10000, scale: 'linear'
|
2015-01-09 18:00:04 -08:00
|
|
|
}]
|
2015-02-11 10:13:49 -08:00
|
|
|
}).then(done, done.fail);
|
2015-01-09 18:00:04 -08:00
|
|
|
});
|
|
|
|
|
2015-02-11 10:13:49 -08:00
|
|
|
it('should log match stats', function(done) {
|
2015-01-09 18:00:04 -08:00
|
|
|
perfUtil.runClickBenchmark({
|
|
|
|
url: URL,
|
|
|
|
buttons: ['#match'],
|
|
|
|
id: 'ng2.selector.match',
|
|
|
|
params: [{
|
2015-01-15 15:14:54 -08:00
|
|
|
name: 'selectors', value: 10000, scale: 'linear'
|
2015-01-09 18:00:04 -08:00
|
|
|
}]
|
2015-02-11 10:13:49 -08:00
|
|
|
}).then(done, done.fail);
|
2015-01-09 18:00:04 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|