summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/add-recipe/add-recipe.component.spec.ts
diff options
context:
space:
mode:
authorChris Undercoffer <undercofferch18@gmail.com>2019-12-09 17:13:47 -0500
committerChris Undercoffer <undercofferch18@gmail.com>2019-12-09 17:13:47 -0500
commitd04ec02a64e85d13f04e8a5567d82ae2bcce3ff0 (patch)
treee5841b7fda2a49bf8875cbf17aefe4a44ef58131 /recipeBuddy/src/app/add-recipe/add-recipe.component.spec.ts
parentc3666978e0eef9eeb52d4e383a98d3ef075c37da (diff)
parent67b9f6678c6c588f231bce1f658adfe0e11321ab (diff)
Merge branch 'master' into shoppingcart
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.ts25
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();
+ });
+});