ucap-lg-web/src/app/sections/chat/dialogs/create.dialog.component.spec.ts
Park Byung Eun 92da6c71ce 0527 sync
2020-05-28 21:52:40 +09:00

27 lines
785 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { DebugElement } from '@angular/core';
import { CreateDialogComponent } from './create.dialog.component';
describe('ucap::ui-organization::CreateChatDialogComponent', () => {
let component: CreateDialogComponent;
let fixture: ComponentFixture<CreateDialogComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [CreateDialogComponent]
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CreateDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});