import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { CallComponent } from './call.component'; describe('Chat::LeftSidenav::CallComponent', () => { let component: CallComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [CallComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(CallComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });