import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { By } from '@angular/platform-browser'; import { DebugElement } from '@angular/core'; import { ForwardDialogComponent } from './forward.dialog.component'; describe('app::ui-chat::ForwardDialogComponent', () => { let component: ForwardDialogComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ForwardDialogComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ForwardDialogComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });