27 lines
779 B
TypeScript
27 lines
779 B
TypeScript
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();
|
|
});
|
|
});
|