diff options
author | chrisundercoffer <55003067+chrisundercoffer@users.noreply.github.com> | 2019-12-09 17:08:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-09 17:08:51 -0500 |
commit | 67b9f6678c6c588f231bce1f658adfe0e11321ab (patch) | |
tree | bc42a10b22ef6402bdbb41794eee584a56737920 /recipeBuddy/src/app/add-recipe/add-recipe.component.spec.ts | |
parent | 5cf3689290666f70cd631d7b3d40a2ed245a3fce (diff) | |
parent | 2a46419961ab4db50146434945a57859893f8d54 (diff) |
Merge pull request #14 from tuckerevans/add_page
Add Recipe Page
Diffstat (limited to 'recipeBuddy/src/app/add-recipe/add-recipe.component.spec.ts')
-rw-r--r-- | recipeBuddy/src/app/add-recipe/add-recipe.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipeBuddy/src/app/add-recipe/add-recipe.component.spec.ts b/recipeBuddy/src/app/add-recipe/add-recipe.component.spec.ts new file mode 100644 index 0000000..86b2da6 --- /dev/null +++ b/recipeBuddy/src/app/add-recipe/add-recipe.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { AddRecipeComponent } from './add-recipe.component'; + +describe('AddRecipeComponent', () => { + let component: AddRecipeComponent; + let fixture: ComponentFixture<AddRecipeComponent>; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ AddRecipeComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AddRecipeComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |