From 30ea1d1313e5830456b49cd100906eb0c4f3efd0 Mon Sep 17 00:00:00 2001 From: schencej Date: Sat, 14 Sep 2019 13:15:56 -0400 Subject: Initial commit --- recipeBuddy/src/app/app.component.spec.ts | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 recipeBuddy/src/app/app.component.spec.ts (limited to 'recipeBuddy/src/app/app.component.spec.ts') diff --git a/recipeBuddy/src/app/app.component.spec.ts b/recipeBuddy/src/app/app.component.spec.ts new file mode 100644 index 0000000..58a9842 --- /dev/null +++ b/recipeBuddy/src/app/app.component.spec.ts @@ -0,0 +1,31 @@ +import { TestBed, async } from '@angular/core/testing'; +import { AppComponent } from './app.component'; + +describe('AppComponent', () => { + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ + AppComponent + ], + }).compileComponents(); + })); + + it('should create the app', () => { + const fixture = TestBed.createComponent(AppComponent); + const app = fixture.debugElement.componentInstance; + expect(app).toBeTruthy(); + }); + + it(`should have as title 'recipeBuddy'`, () => { + const fixture = TestBed.createComponent(AppComponent); + const app = fixture.debugElement.componentInstance; + expect(app.title).toEqual('recipeBuddy'); + }); + + it('should render title', () => { + const fixture = TestBed.createComponent(AppComponent); + fixture.detectChanges(); + const compiled = fixture.debugElement.nativeElement; + expect(compiled.querySelector('.content span').textContent).toContain('recipeBuddy app is running!'); + }); +}); -- cgit v1.1