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