forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_utils.ts
More file actions
42 lines (39 loc) · 868 Bytes
/
test_utils.ts
File metadata and controls
42 lines (39 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* @license
* Copyright Google LLC 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, runBenchmark} from '@angular/build-tooling/bazel/benchmark/driver-utilities';
import {browser} from 'protractor';
export function runTreeBenchmark({
id,
prepare,
setup,
work,
}: {
id: string;
prepare?(): void;
setup?(): void;
work(): void;
}) {
browser.rootEl = '#root';
return runBenchmark({
id: id,
url: '',
ignoreBrowserSynchronization: true,
params: [],
work: work,
prepare: prepare,
setup: setup,
});
}
export function openTreeBenchmark() {
browser.rootEl = '#root';
openBrowser({
url: '',
ignoreBrowserSynchronization: true,
params: [{name: 'depth', value: 4}],
});
}