ucap-doc/documents/업무/6월/1째주/backup/etc/forward.dialog.component.spec.ts

27 lines
779 B
TypeScript
Raw Normal View History

2020-06-05 09:45:18 +00:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { DebugElement } from '@angular/core';
import { ForwardDialogComponent } from './forward.dialog.component';
describe('app::ui-chat::ForwardDialogComponent', () => {
let component: ForwardDialogComponent;
let fixture: ComponentFixture<ForwardDialogComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ForwardDialogComponent]
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ForwardDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});