27 lines
652 B
JavaScript
27 lines
652 B
JavaScript
|
"use strict";
|
||
|
var util = require('../../../../tools/perf/util.js');
|
||
|
|
||
|
describe('ng2 change detection benchmark', function () {
|
||
|
|
||
|
var URL = 'benchmarks/web/change_detection/change_detection_benchmark.html';
|
||
|
|
||
|
afterEach(util.verifyNoErrors);
|
||
|
|
||
|
it('should log ng stats', function() {
|
||
|
util.runSimpleBenchmark({
|
||
|
url: URL,
|
||
|
buttons: ['#ng2DetectChanges'],
|
||
|
name: browser.params.lang+'.ng2.changeDetection'
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should log baseline stats', function() {
|
||
|
util.runSimpleBenchmark({
|
||
|
url: URL,
|
||
|
buttons: ['#baselineDetectChanges'],
|
||
|
name: browser.params.lang+'.baseline.changeDetection'
|
||
|
});
|
||
|
});
|
||
|
|
||
|
});
|