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; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [CreateGroupDialogComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(CreateGroupDialogComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });