25 lines
667 B
TypeScript
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();
|
|
});
|
|
});
|