summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/edit-recipe/edit-recipe.component.spec.ts
diff options
context:
space:
mode:
authorschencej <55326070+schencej@users.noreply.github.com>2019-12-10 17:31:57 -0500
committerGitHub <noreply@github.com>2019-12-10 17:31:57 -0500
commitdb8efeafb8e3a427cded4ffa1b8fdcda789cbdaa (patch)
treef1a10c6a2e092de028810bc842dc11bde2580a49 /recipeBuddy/src/app/edit-recipe/edit-recipe.component.spec.ts
parent58043492cf8a12d3b73dbb8760e26ffce0e2dc41 (diff)
parent3fd5630cae141bf49537537315d23bdbf92f8493 (diff)
Merge branch 'master' into top_bar
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();
+ });
+});