28 lines
791 B
TypeScript
Raw Normal View History

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