ucap-doc/documents/업무/5월/3째주/lgweb-group-backup/edit-name.dialog.component.spec.ts

25 lines
704 B
TypeScript
Raw Normal View History

2020-05-22 09:48:03 +00:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { EditNameDialogComponent } from './edit-name.dialog.component';
describe('ucap::ui-organization::CreateChatDialogComponent', () => {
let component: EditNameDialogComponent;
let fixture: ComponentFixture<EditNameDialogComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [EditNameDialogComponent]
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(EditNameDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});