Gets a promise for the text content the option.
()
| 48 | |
| 49 | /** Gets a promise for the text content the option. */ |
| 50 | async getText(): Promise<string> { |
| 51 | return (await this.host()).text({ |
| 52 | exclude: '.mat-mdc-chip-avatar, .mat-mdc-chip-trailing-icon, .mat-icon', |
| 53 | }); |
| 54 | } |
| 55 | |
| 56 | /** Whether the chip is disabled. */ |
| 57 | async isDisabled(): Promise<boolean> { |
no test coverage detected