argos/dmp-frontend/src/app/sample-form/sample-form.component.spec.ts

26 lines
661 B
TypeScript

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