* Gets a `HarnessPredicate` that can be used to search for a table with specific attributes. * @param options Options for narrowing the search * @return a `HarnessPredicate` configured with the given options.
(
this: ComponentHarnessConstructor<T>,
options: TableHarnessFilters = {},
)
| 44 | * @return a `HarnessPredicate` configured with the given options. |
| 45 | */ |
| 46 | static with<T extends MatTableHarness>( |
| 47 | this: ComponentHarnessConstructor<T>, |
| 48 | options: TableHarnessFilters = {}, |
| 49 | ): HarnessPredicate<T> { |
| 50 | return new HarnessPredicate(this, options); |
| 51 | } |
| 52 | |
| 53 | /** Gets all the header rows in a table. */ |
| 54 | async getHeaderRows(filter: RowHarnessFilters = {}): Promise<MatHeaderRowHarness[]> { |
no outgoing calls
no test coverage detected