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