Files
tiramisu/src/app/recipe-add/recipe-add.component.spec.ts
2024-06-14 14:38:50 +02:00

24 lines
617 B
TypeScript

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();
});
});