25 lines
659 B
TypeScript
25 lines
659 B
TypeScript
|
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<LeftNaviComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [LeftNaviComponent]
|
||
|
}).compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(LeftNaviComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|