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