the polymer benchmarks are super old and not relevant any more and these benchmarks were the only reason why we needed bower at all so long, bower. thanks for all the fish. PR Close #27931
82 lines
2.3 KiB
TypeScript
82 lines
2.3 KiB
TypeScript
/**
|
|
* @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 {$} from 'protractor';
|
|
|
|
export const CreateBtn = '#createDom';
|
|
export const DestroyBtn = '#destroyDom';
|
|
export const DetectChangesBtn = '#detectChanges';
|
|
export const RootEl = '#root';
|
|
export const NumberOfChecksEl = '#numberOfChecks';
|
|
|
|
export interface Benchmark {
|
|
id: string;
|
|
url: string;
|
|
buttons: string[];
|
|
ignoreBrowserSynchronization?: boolean;
|
|
extraParams?: {name: string, value: any}[];
|
|
}
|
|
|
|
const CreateDestroyButtons: string[] = [CreateBtn, DestroyBtn];
|
|
const CreateDestroyDetectChangesButtons: string[] = [...CreateDestroyButtons, DetectChangesBtn];
|
|
|
|
export const Benchmarks: Benchmark[] = [
|
|
{
|
|
id: `deepTree.ng2`,
|
|
url: 'all/benchmarks/src/tree/ng2/index.html',
|
|
buttons: CreateDestroyDetectChangesButtons,
|
|
},
|
|
{
|
|
id: `deepTree.ng2.next`,
|
|
url: 'all/benchmarks/src/tree/ng2_next/index.html',
|
|
buttons: CreateDestroyDetectChangesButtons,
|
|
ignoreBrowserSynchronization: true,
|
|
// Can't use bundles as we use non exported code
|
|
extraParams: [{name: 'bundles', value: false}]
|
|
},
|
|
{
|
|
id: `deepTree.ng2.static`,
|
|
url: 'all/benchmarks/src/tree/ng2_static/index.html',
|
|
buttons: CreateDestroyButtons,
|
|
},
|
|
{
|
|
id: `deepTree.ng2_switch`,
|
|
url: 'all/benchmarks/src/tree/ng2_switch/index.html',
|
|
buttons: CreateDestroyButtons,
|
|
},
|
|
{
|
|
id: `deepTree.ng2.render3_function`,
|
|
url: 'all/benchmarks/src/tree/render3_function/index.html',
|
|
buttons: CreateDestroyDetectChangesButtons,
|
|
ignoreBrowserSynchronization: true,
|
|
},
|
|
{
|
|
id: `deepTree.iv`,
|
|
url: 'all/benchmarks/src/tree/iv/index.html',
|
|
buttons: CreateDestroyDetectChangesButtons,
|
|
ignoreBrowserSynchronization: true,
|
|
},
|
|
{
|
|
id: `deepTree.baseline`,
|
|
url: 'all/benchmarks/src/tree/baseline/index.html',
|
|
buttons: CreateDestroyButtons,
|
|
ignoreBrowserSynchronization: true,
|
|
},
|
|
{
|
|
id: `deepTree.incremental_dom`,
|
|
url: 'all/benchmarks/src/tree/incremental_dom/index.html',
|
|
buttons: CreateDestroyButtons,
|
|
ignoreBrowserSynchronization: true,
|
|
},
|
|
{
|
|
id: `deepTree.ng1`,
|
|
url: 'all/benchmarks/src/tree/ng1/index.html',
|
|
buttons: CreateDestroyDetectChangesButtons,
|
|
}
|
|
];
|