ucap-doc/documents/업무/6월/2째주/backup/binary-viewer.component.spec.ts
Park Byung Eun 7dcec1aaad sync
2020-06-09 09:12:32 +09:00

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