Skip to content

Commit f847ab5

Browse files
committed
fixup! test(button-harness): add performance tests for buttons using the protractor harness env
1 parent 9ec99a2 commit f847ab5

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

test/benchmarks/material/button-harness/app.module.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import {MatButtonModule} from '@angular/material/button';
1414
import {NUM_BUTTONS} from './constants';
1515

1616
/** component: mat-button-harness-test */
17+
<<<<<<< HEAD
1718

1819
@Component({
1920
selector: 'app-root',
@@ -31,6 +32,8 @@ import {NUM_BUTTONS} from './constants';
3132
>>>>>>> 72a4ae020 (fixup! test(button-harness): add performance tests for buttons using the protractor harness env)
3233

3334
/** component: mat-raised-button-harness-test */
35+
=======
36+
>>>>>>> bf160e8de (fixup! test(button-harness): add performance tests for buttons using the protractor harness env)
3437

3538
@Component({
3639
selector: 'app-root',

test/benchmarks/material/button-harness/protractor.perf-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88

9-
import {HarnessLoader, HarnessPredicate} from '@angular/cdk/testing';
9+
import {HarnessLoader} from '@angular/cdk/testing';
1010
import {MatButtonHarness} from '@angular/material/button/testing/button-harness';
1111
import {ProtractorHarnessEnvironment} from '@angular/cdk/testing/protractor';
1212
import {$$, element, by, browser} from 'protractor';

test/benchmarks/material/button-harness/testbed.perf-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ describe('performance for the testbed harness environment', () => {
111111
@Component({
112112
template: `
113113
<button *ngFor="let val of vals" mat-button> {{ val }} </button>
114-
`,
114+
`,
115115
})
116116
export class ButtonHarnessTest {
117117
vals = Array.from({ length: NUM_BUTTONS }, (_, i) => i);

0 commit comments

Comments
 (0)