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