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