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