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