2016-08-30 12:29:39 -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
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {openBrowser, verifyNoBrowserErrors} from 'e2e_util/e2e_util';
|
|
|
|
|
|
|
|
const useBundles = false;
|
|
|
|
|
2016-08-30 16:44:52 -04:00
|
|
|
describe('tree benchmark', () => {
|
2016-08-30 12:29:39 -04:00
|
|
|
|
|
|
|
afterEach(verifyNoBrowserErrors);
|
|
|
|
|
2016-08-30 16:44:52 -04:00
|
|
|
it('should work for the baseline', () => {
|
2016-08-30 12:29:39 -04:00
|
|
|
openBrowser({
|
|
|
|
url: 'all/benchmarks/src/tree/baseline/index.html',
|
|
|
|
ignoreBrowserSynchronization: true,
|
|
|
|
});
|
|
|
|
$('#createDom').click();
|
|
|
|
expect($('baseline').getText()).toContain('0');
|
|
|
|
});
|
|
|
|
|
2016-08-30 16:44:52 -04:00
|
|
|
it('should work for ng2', () => {
|
2016-08-30 12:29:39 -04:00
|
|
|
openBrowser({
|
|
|
|
url: 'all/benchmarks/src/tree/ng2/index.html',
|
|
|
|
});
|
|
|
|
$('#createDom').click();
|
|
|
|
expect($('app').getText()).toContain('0');
|
|
|
|
});
|
|
|
|
|
2016-08-30 16:44:52 -04:00
|
|
|
it('should work for polymer binary tree', () => {
|
2016-08-30 12:29:39 -04:00
|
|
|
openBrowser({
|
|
|
|
url: 'all/benchmarks/src/tree/polymer/index.html',
|
|
|
|
ignoreBrowserSynchronization: true,
|
|
|
|
});
|
|
|
|
$('#createDom').click();
|
|
|
|
expect($('#app').getText()).toContain('0');
|
|
|
|
});
|
|
|
|
|
2016-08-30 16:44:52 -04:00
|
|
|
it('should work for polymer leaves', () => {
|
|
|
|
openBrowser({
|
|
|
|
url: 'all/benchmarks/src/tree/polymer_leaves/index.html',
|
|
|
|
ignoreBrowserSynchronization: true,
|
|
|
|
});
|
|
|
|
$('#createDom').click();
|
|
|
|
expect($('#app').getText()).toContain('0');
|
|
|
|
});
|
|
|
|
|
2016-08-30 12:29:39 -04:00
|
|
|
});
|