25 lines
739 B
TypeScript
Raw Normal View History

2019-10-17 09:18:55 +09:00
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();
});
});