2015-02-05 17:35:00 -05:00
|
|
|
var perfUtil = require('../../angular2/e2e_test/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);
|
|
|
|
|
|
|
|
it('should log parse stats', function() {
|
|
|
|
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
|
|
|
}]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should log addSelectable stats', function() {
|
|
|
|
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
|
|
|
}]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should log match stats', function() {
|
|
|
|
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
|
|
|
}]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|