28 lines
827 B
TypeScript
28 lines
827 B
TypeScript
|
/* tslint:disable:no-unused-variable */
|
||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
import { By } from '@angular/platform-browser';
|
||
|
import { DebugElement } from '@angular/core';
|
||
|
|
||
|
import { CreateChatDialogComponent } from './create-chat.dialog.component';
|
||
|
|
||
|
describe('CreateChatDialogComponent', () => {
|
||
|
let component: CreateChatDialogComponent;
|
||
|
let fixture: ComponentFixture<CreateChatDialogComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [CreateChatDialogComponent]
|
||
|
}).compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(CreateChatDialogComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|