next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/messenger/components/right-side.component.spec.ts
2019-09-26 11:11:22 +09:00

25 lines
667 B
TypeScript

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