-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathoption-harness.d-047df5c5.d.ts
executable file
·34 lines (31 loc) · 1.48 KB
/
option-harness.d-047df5c5.d.ts
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
import { BaseHarnessFilters, ContentContainerComponentHarness, ComponentHarnessConstructor, HarnessPredicate } from '@angular/cdk/testing';
interface OptionHarnessFilters extends BaseHarnessFilters {
text?: string | RegExp;
isSelected?: boolean;
}
/** Harness for interacting with a `mat-option` in tests. */
declare class MatOptionHarness extends ContentContainerComponentHarness {
/** Selector used to locate option instances. */
static hostSelector: string;
/** Element containing the option's text. */
private _text;
/**
* Gets a `HarnessPredicate` that can be used to search for an option with specific attributes.
* @param options Options for filtering which option instances are considered a match.
* @return a `HarnessPredicate` configured with the given options.
*/
static with<T extends MatOptionHarness>(this: ComponentHarnessConstructor<T>, options?: OptionHarnessFilters): HarnessPredicate<T>;
/** Clicks the option. */
click(): Promise<void>;
/** Gets the option's label text. */
getText(): Promise<string>;
/** Gets whether the option is disabled. */
isDisabled(): Promise<boolean>;
/** Gets whether the option is selected. */
isSelected(): Promise<boolean>;
/** Gets whether the option is active. */
isActive(): Promise<boolean>;
/** Gets whether the option is in multiple selection mode. */
isMultiple(): Promise<boolean>;
}
export { MatOptionHarness as M, type OptionHarnessFilters as O };