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