25 lines
732 B
TypeScript
Raw Normal View History

2019-10-16 18:05:18 +09:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { RelayMessageDialogComponent } from './relay-message.dialog.component';
describe('app::layouts::messenger::RelayMessageDialogComponent', () => {
let component: RelayMessageDialogComponent;
let fixture: ComponentFixture<RelayMessageDialogComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [RelayMessageDialogComponent]
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RelayMessageDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});