add componants: recipes and recipeAdd
This commit is contained in:
23
src/app/recipe-add/recipe-add.component.spec.ts
Normal file
23
src/app/recipe-add/recipe-add.component.spec.ts
Normal 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();
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user