Page MenuHomec4science

footnote.component.spec.ts
No OneTemporary

File Metadata

Created
Sat, Jun 29, 17:58

footnote.component.spec.ts

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

Event Timeline