UNPKG

spartacus-mcp-server

Version:

MCP server for SAP Spartacus development tools - Generate components, services, and models following Spartacus conventions

24 lines (18 loc) 539 B
/* * SPDX-FileCopyrightText: 2025 SAP Spartacus team <spartacus-team@sap.com> * * SPDX-License-Identifier: Apache-2.0 */ import { TestBed } from '@angular/core/testing'; import { CustomCartService } from './custom-cart.service'; describe('CustomCartService', () => { let service: CustomCartService; beforeEach(() => { TestBed.configureTestingModule({}); service = TestBed.inject(CustomCartService); }); it('should be created', () => { expect(service).toBeTruthy(); }); // TODO: Add more specific tests });