import { ComponentFixture, TestBed } from '@angular/core/testing'; import { RecipeUpload } from './recipe-upload'; describe('RecipeUpload', () => { let component: RecipeUpload; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [RecipeUpload], }).compileComponents(); fixture = TestBed.createComponent(RecipeUpload); component = fixture.componentInstance; await fixture.whenStable(); }); it('should create', () => { expect(component).toBeTruthy(); }); });