28 lines
791 B
TypeScript
28 lines
791 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 { ImageViewerComponent } from './image-viewer.component';
|
|
|
|
describe('ImageViewerComponent', () => {
|
|
let component: ImageViewerComponent;
|
|
let fixture: ComponentFixture<ImageViewerComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ImageViewerComponent]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ImageViewerComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|