import{TestBed}from'@angular/core/testing';import{RecipesService}from'./recipes.service';describe('RecipesService',()=>{letservice:RecipesService;beforeEach(()=>{TestBed.configureTestingModule({});service=TestBed.inject(RecipesService);});it('should be created',()=>{expect(service).toBeTruthy();});});