next-ucap-messenger/projects/ucap-webmessenger-ui/src/lib/components/file-viewer.component.spec.ts

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