add componants: recipes and recipeAdd

This commit is contained in:
bastien ollier
2024-06-14 14:27:55 +02:00
parent 4c9548f9af
commit 84649ceda1
7 changed files with 74 additions and 0 deletions

View File

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