import { ComponentFixture, TestBed } from '@angular/core/testing'; import { ActionsDropdownComponent } from './actions-dropdown.component'; import {MatMenuModule} from '@angular/material/menu'; describe('ActionsDropdownComponent', () => { let component: ActionsDropdownComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [MatMenuModule], declarations: [ ActionsDropdownComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(ActionsDropdownComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });