Project: Mall App Client: Maiora
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

cart-item.service.spec.ts 344 B

6 år sedan
123456789101112
  1. import { TestBed } from '@angular/core/testing';
  2. import { CartItemService } from './cart-item.service';
  3. describe('CartItemService', () => {
  4. beforeEach(() => TestBed.configureTestingModule({}));
  5. it('should be created', () => {
  6. const service: CartItemService = TestBed.get(CartItemService);
  7. expect(service).toBeTruthy();
  8. });
  9. });