summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/edit-recipe/edit-recipe.component.spec.ts
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-12-10 19:50:21 -0500
committerTucker Evans <tuckerevans24@gmail.com>2019-12-10 19:53:38 -0500
commit556fb4672019b6af56794998d6435f68e1c59368 (patch)
tree291e0cb67b0598a59da1976cadfaf5e900ae7de6 /recipeBuddy/src/app/edit-recipe/edit-recipe.component.spec.ts
parentb0bd782b6ff20ff874afc9ebf0b8ab9274ea2a09 (diff)
parent3b8dd74dcb2be88630099772e0902e1dfbcde92c (diff)
Merge branch 'master' into elim
Diffstat (limited to 'recipeBuddy/src/app/edit-recipe/edit-recipe.component.spec.ts')
-rw-r--r--recipeBuddy/src/app/edit-recipe/edit-recipe.component.spec.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/recipeBuddy/src/app/edit-recipe/edit-recipe.component.spec.ts b/recipeBuddy/src/app/edit-recipe/edit-recipe.component.spec.ts
new file mode 100644
index 0000000..e92d28b
--- /dev/null
+++ b/recipeBuddy/src/app/edit-recipe/edit-recipe.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { EditRecipeComponent } from './edit-recipe.component';
+
+describe('EditRecipeComponent', () => {
+ let component: EditRecipeComponent;
+ let fixture: ComponentFixture<EditRecipeComponent>;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ EditRecipeComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(EditRecipeComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});