2020-02-24 09:38:44 +09:00

25 lines
757 B
TypeScript

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