import { describe, it, expect } from 'vitest'; import { ServiceFactory } from './ServiceFactory'; describe('ServiceFactory', () => { it('should be defined', () => { expect(ServiceFactory).toBeDefined(); }); });