I\'m getting following error when I try to test an angular component:
Error while running jest tests:
Can\'t bind to \'matMenuTriggerFor\' since it i
Import MatMenuModule in your feature Module OR the Module where this component resides in.
MatMenuModule
import { MatMenuModule} from '@angular/material/menu';
and
imports: [ MatMenuModule ]