Page MenuHomec4science

version-view.component.spec.ts
No OneTemporary

File Metadata

Created
Sun, Nov 17, 02:01

version-view.component.spec.ts

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { VersionViewComponent } from './version-view.component';
describe('VersionViewComponent', () => {
let component: VersionViewComponent;
let fixture: ComponentFixture<VersionViewComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ VersionViewComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(VersionViewComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

Event Timeline