25 lines
725 B
TypeScript
25 lines
725 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { CreateGroupDialogComponent } from './create-group.dialog.component';
|
|
|
|
describe('app::layouts::messenger::CreateGroupDialogComponent', () => {
|
|
let component: CreateGroupDialogComponent;
|
|
let fixture: ComponentFixture<CreateGroupDialogComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [CreateGroupDialogComponent]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(CreateGroupDialogComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|