1
1
/**
2
2
* @license
3
- * Copyright Google Inc. All Rights Reserved.
3
+ * Copyright Google LLC All Rights Reserved.
4
4
*
5
5
* Use of this source code is governed by an MIT-style license that can be
6
6
* found in the LICENSE file at https://angular.io/license
9
9
import {$, browser} from 'protractor';
10
10
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
11
11
12
- describe('checkbox overview performance benchmarks', () => {
12
+ describe('checkbox performance benchmarks', () => {
13
13
beforeAll(() => {
14
14
browser.rootEl = '#root';
15
15
});
16
16
17
17
it('renders a checked checkbox', async() => {
18
18
await runBenchmark({
19
- id: 'checkbox-overview- render-checked',
19
+ id: 'checkbox-render-checked',
20
20
url: '',
21
21
ignoreBrowserSynchronization: true,
22
22
params: [],
@@ -35,7 +35,7 @@ describe('checkbox overview performance benchmarks', () => {
35
35
36
36
it('renders an unchecked checkbox', async() => {
37
37
await runBenchmark({
38
- id: 'checkbox-overview- render-unchecked',
38
+ id: 'checkbox-render-unchecked',
39
39
url: '',
40
40
ignoreBrowserSynchronization: true,
41
41
params: [],
@@ -51,7 +51,7 @@ describe('checkbox overview performance benchmarks', () => {
51
51
52
52
it('renders an indeterminate checkbox', async() => {
53
53
await runBenchmark({
54
- id: 'checkbox-overview- render-indeterminate',
54
+ id: 'checkbox-render-indeterminate',
55
55
url: '',
56
56
ignoreBrowserSynchronization: true,
57
57
params: [],
@@ -70,7 +70,7 @@ describe('checkbox overview performance benchmarks', () => {
70
70
71
71
it('updates from unchecked to checked', async() => {
72
72
await runBenchmark({
73
- id: 'checkbox-overview- click-unchecked-to-checked',
73
+ id: 'checkbox-click-unchecked-to-checked',
74
74
url: '',
75
75
ignoreBrowserSynchronization: true,
76
76
params: [],
@@ -89,7 +89,7 @@ describe('checkbox overview performance benchmarks', () => {
89
89
90
90
it('updates from checked to unchecked', async() => {
91
91
await runBenchmark({
92
- id: 'checkbox-overview- click-checked-to-unchecked',
92
+ id: 'checkbox-click-checked-to-unchecked',
93
93
url: '',
94
94
ignoreBrowserSynchronization: true,
95
95
params: [],
0 commit comments