add recipe component

This commit is contained in:
bastien ollier
2024-06-14 14:21:56 +02:00
parent b7f6487ad3
commit 4c9548f9af
6 changed files with 49 additions and 3 deletions

View File

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