summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/recipe-card/recipe-card.component.spec.ts
diff options
context:
space:
mode:
authorschencej <schencej@clarkson.edu>2019-12-12 11:56:57 -0500
committerschencej <schencej@clarkson.edu>2019-12-12 11:56:57 -0500
commit47254348140fce18c985e9a0ffb592390b226c80 (patch)
tree407d7c52ad55a02f006b095be71ff1056864766e /recipeBuddy/src/app/recipe-card/recipe-card.component.spec.ts
parent946512c32a3b94079c9d2aaf48ef16d09fd14e3d (diff)
added main page
Diffstat (limited to 'recipeBuddy/src/app/recipe-card/recipe-card.component.spec.ts')
-rw-r--r--recipeBuddy/src/app/recipe-card/recipe-card.component.spec.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/recipeBuddy/src/app/recipe-card/recipe-card.component.spec.ts b/recipeBuddy/src/app/recipe-card/recipe-card.component.spec.ts
new file mode 100644
index 0000000..ea6f5b7
--- /dev/null
+++ b/recipeBuddy/src/app/recipe-card/recipe-card.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { RecipeCardComponent } from './recipe-card.component';
+
+describe('RecipeCardComponent', () => {
+ let component: RecipeCardComponent;
+ let fixture: ComponentFixture<RecipeCardComponent>;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ RecipeCardComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(RecipeCardComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});