ucap-lg-mockup/src/app/pages/common/popup/new-chat.component.spec.ts
Park Byung Eun b7111951df init 0428
2020-04-28 21:09:35 +09:00

26 lines
636 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NewChatComponent } from './new-chat.component';
describe('NewChatComponent', () => {
let component: NewChatComponent;
let fixture: ComponentFixture<NewChatComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ NewChatComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(NewChatComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});