definma-ui/src/app/prediction/prediction.component.spec.ts

45 lines
1.2 KiB
TypeScript
Raw Normal View History

2020-08-12 15:15:31 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { PredictionComponent } from './prediction.component';
2020-08-16 20:01:56 +02:00
import {ApiService} from '../services/api.service';
import {RbUiComponentsModule} from '@inst-iot/bosch-angular-ui-components';
import {FormsModule} from '@angular/forms';
import {ValidationService} from '../services/validation.service';
import {DataService} from '../services/data.service';
// TODO
let apiServiceSpy: jasmine.SpyObj<ApiService>;
2020-08-12 15:15:31 +02:00
describe('PredictionComponent', () => {
let component: PredictionComponent;
let fixture: ComponentFixture<PredictionComponent>;
beforeEach(async(() => {
2020-08-16 20:01:56 +02:00
const apiSpy = jasmine.createSpyObj('ApiService', ['post']);
2020-08-12 15:15:31 +02:00
TestBed.configureTestingModule({
2020-08-16 20:01:56 +02:00
declarations: [ PredictionComponent ],
imports: [
],
providers: [
{provide: ApiService, useValue: apiSpy}
]
2020-08-12 15:15:31 +02:00
})
.compileComponents();
2020-08-16 20:01:56 +02:00
apiServiceSpy = TestBed.inject(ApiService) as jasmine.SpyObj<ApiService>;
2020-08-12 15:15:31 +02:00
}));
beforeEach(() => {
fixture = TestBed.createComponent(PredictionComponent);
component = fixture.componentInstance;
2020-08-16 20:01:56 +02:00
component.ngOnInit();
2020-08-12 15:15:31 +02:00
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});