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