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