import { ComponentFixture, TestBed } from '@angular/core/testing'; import { TopbarComponent } from '@app/shared/topbar/topbar.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(); }); });