Project: Mall App Client: Maiora
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

cart-item.service.spec.ts 344 B

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. });