Project: Mall App Client: Maiora
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

cart-item.service.spec.ts 344 B

6 лет назад
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. });