2016-08-26 15:27:24 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
2015-05-30 00:40:15 -04:00
|
|
|
|
2016-08-30 12:29:39 -04:00
|
|
|
import {runBenchmark, verifyNoBrowserErrors} from 'e2e_util/perf_util';
|
2015-05-30 00:40:15 -04:00
|
|
|
|
2016-08-30 12:29:39 -04:00
|
|
|
describe('tree benchmark', () => {
|
2015-05-30 00:40:15 -04:00
|
|
|
|
2016-08-26 15:27:24 -04:00
|
|
|
afterEach(verifyNoBrowserErrors);
|
2015-05-30 00:40:15 -04:00
|
|
|
|
2016-08-30 12:29:39 -04:00
|
|
|
it('should work for the baseline', function(done) {
|
|
|
|
runBenchmark({
|
|
|
|
id: 'deepTree.baseline',
|
|
|
|
url: 'all/benchmarks/src/tree/baseline/index.html',
|
|
|
|
ignoreBrowserSynchronization: true,
|
|
|
|
params: [{name: 'depth', value: 9}],
|
|
|
|
work: () => {
|
|
|
|
$('#createDom').click();
|
|
|
|
$('#destroyDom').click();
|
|
|
|
}
|
|
|
|
}).then(done, done.fail);
|
2015-05-30 00:40:15 -04:00
|
|
|
});
|
|
|
|
|
2016-08-30 12:29:39 -04:00
|
|
|
it('should work for ng2', function(done) {
|
|
|
|
runBenchmark({
|
|
|
|
id: 'deepTree.ng2',
|
|
|
|
url: 'all/benchmarks/src/tree/ng2/index.html',
|
|
|
|
params: [{name: 'depth', value: 9}],
|
|
|
|
work: () => {
|
|
|
|
$('#createDom').click();
|
|
|
|
$('#destroyDom').click();
|
|
|
|
}
|
|
|
|
}).then(done, done.fail)
|
2015-05-30 00:40:15 -04:00
|
|
|
});
|
|
|
|
|
2016-08-30 12:29:39 -04:00
|
|
|
it('should work for polymer', function(done) {
|
|
|
|
runBenchmark({
|
|
|
|
id: 'deepTree.polymer',
|
|
|
|
url: 'all/benchmarks/src/tree/polymer/index.html',
|
|
|
|
ignoreBrowserSynchronization: true,
|
|
|
|
params: [{name: 'depth', value: 9}],
|
|
|
|
work: () => {
|
|
|
|
$('#createDom').click();
|
|
|
|
$('#destroyDom').click();
|
|
|
|
}
|
|
|
|
}).then(done, done.fail)
|
2015-05-30 00:40:15 -04:00
|
|
|
});
|
|
|
|
});
|