• Overview
@angular/cdk/testing

BaseHarnessFilters

interface

A set of criteria that can be used to filter a list of ComponentHarness instances.

API

    
      interface BaseHarnessFilters {  selector?: string | undefined;  ancestor?: string | undefined;}
    
    

selector

string | undefined

Only find instances whose host element matches the given selector.

ancestor

string | undefined

Only find instances that are nested under an element with the given selector.

Jump to details