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