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