2019-09-23 05:23:24 +00:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2019-09-26 02:11:22 +00:00
|
|
|
import { LeftSideComponent } from './left-side.component';
|
2019-09-23 05:23:24 +00:00
|
|
|
|
2019-09-26 02:11:22 +00:00
|
|
|
describe('App::Layout::Messenger::LeftSideComponent', () => {
|
|
|
|
let component: LeftSideComponent;
|
|
|
|
let fixture: ComponentFixture<LeftSideComponent>;
|
2019-09-23 05:23:24 +00:00
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2019-09-26 02:11:22 +00:00
|
|
|
declarations: [LeftSideComponent]
|
2019-09-23 05:23:24 +00:00
|
|
|
}).compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2019-09-26 02:11:22 +00:00
|
|
|
fixture = TestBed.createComponent(LeftSideComponent);
|
2019-09-23 05:23:24 +00:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|