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