Page MenuHomec4science

surveylist.component.spec.ts
No OneTemporary

File Metadata

Created
Sun, Jun 29, 13:17

surveylist.component.spec.ts

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

Event Timeline