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