next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/messenger/components/left-nav.component.spec.ts

25 lines
659 B
TypeScript
Raw Normal View History

2020-01-21 04:32:10 +00:00
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();
});
});