CartService und Buy-Button auf Detail-Seite hinzugefĆ¼gt
[examples/angular-tutorial] / src / app / cart.service.spec.ts
diff --git a/src/app/cart.service.spec.ts b/src/app/cart.service.spec.ts
new file mode 100644 (file)
index 0000000..a686b44
--- /dev/null
@@ -0,0 +1,12 @@
+import { TestBed } from '@angular/core/testing';
+
+import { CartService } from './cart.service';
+
+describe('CartService', () => {
+  beforeEach(() => TestBed.configureTestingModule({}));
+
+  it('should be created', () => {
+    const service: CartService = TestBed.get(CartService);
+    expect(service).toBeTruthy();
+  });
+});