next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/common/dialogs/image-viewer.dialog.component.spec.ts

28 lines
834 B
TypeScript
Raw Normal View History

2019-10-29 00:07:06 +00:00
/* 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 { ImageViewerDialogComponent } from './image-viewer.dialog.component';
describe('ImageViewerDialogComponent', () => {
let component: ImageViewerDialogComponent;
let fixture: ComponentFixture<ImageViewerDialogComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ImageViewerDialogComponent]
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ImageViewerDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});