File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
material-experimental/mdc-table/testing
tools/public_api_guard/material/table Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 7
7
*/
8
8
9
9
import {
10
- ComponentHarness ,
11
10
HarnessPredicate ,
12
11
ComponentHarnessConstructor ,
12
+ ContentContainerComponentHarness ,
13
13
} from '@angular/cdk/testing' ;
14
14
import { CellHarnessFilters } from './table-harness-filters' ;
15
15
16
16
/** Harness for interacting with an MDC-based Angular Material table cell. */
17
- export class MatCellHarness extends ComponentHarness {
17
+ export class MatCellHarness extends ContentContainerComponentHarness {
18
18
/** The selector for the host element of a `MatCellHarness` instance. */
19
19
static hostSelector = '.mat-mdc-cell' ;
20
20
Original file line number Diff line number Diff line change 7
7
*/
8
8
9
9
import {
10
- ComponentHarness ,
11
10
HarnessPredicate ,
12
11
ComponentHarnessConstructor ,
12
+ ContentContainerComponentHarness
13
13
} from '@angular/cdk/testing' ;
14
14
import { CellHarnessFilters } from './table-harness-filters' ;
15
15
16
16
/** Harness for interacting with a standard Angular Material table cell. */
17
- export class MatCellHarness extends ComponentHarness {
17
+ export class MatCellHarness extends ContentContainerComponentHarness {
18
18
/** The selector for the host element of a `MatCellHarness` instance. */
19
19
static hostSelector = '.mat-cell' ;
20
20
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ export interface CellHarnessFilters extends BaseHarnessFilters {
3
3
text ?: string | RegExp ;
4
4
}
5
5
6
- export declare class MatCellHarness extends ComponentHarness {
6
+ export declare class MatCellHarness extends ContentContainerComponentHarness {
7
7
getColumnName ( ) : Promise < string > ;
8
8
getText ( ) : Promise < string > ;
9
9
static hostSelector : string ;
You can’t perform that action at this time.
0 commit comments