spartacus-mcp-server
Version:
MCP server for SAP Spartacus development tools - Generate components, services, and models following Spartacus conventions
24 lines (18 loc) • 544 B
text/typescript
/*
* SPDX-FileCopyrightText: 2025 SAP Spartacus team <spartacus-team@sap.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
import { TestBed } from '@angular/core/testing';
import { UserProfileService } from './user-profile.service';
describe('UserProfileService', () => {
let service: UserProfileService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(UserProfileService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
// TODO: Add more specific tests
});