import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { RecallMessageDialogComponent } from './recall-message.dialog.component'; describe('app::layouts::messenger::RecallMessageDialogComponent', () => { let component: RecallMessageDialogComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [RecallMessageDialogComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(RecallMessageDialogComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });