summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/app.component.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'recipeBuddy/src/app/app.component.spec.ts')
-rw-r--r--recipeBuddy/src/app/app.component.spec.ts31
1 files changed, 31 insertions, 0 deletions
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!');
+ });
+});