X-Git-Url: https://juplo.de/gitweb/?p=examples%2Fangular-tutorial;a=blobdiff_plain;f=src%2Fapp%2Fproduct-details%2Fproduct-details.component.spec.ts;fp=src%2Fapp%2Fproduct-details%2Fproduct-details.component.spec.ts;h=8de32d011a67fa0ba163524f5b5de12915515c6b;hp=0000000000000000000000000000000000000000;hb=bfe15f71205934d62304ce869cb81aeaec551593;hpb=951fb792a342f38bea1760c5104e9f844ac7d49c diff --git a/src/app/product-details/product-details.component.spec.ts b/src/app/product-details/product-details.component.spec.ts new file mode 100644 index 0000000..8de32d0 --- /dev/null +++ b/src/app/product-details/product-details.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ProductDetailsComponent } from './product-details.component'; + +describe('ProductDetailsComponent', () => { + let component: ProductDetailsComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ ProductDetailsComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ProductDetailsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +});