9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import { ServiceFactory } from './ServiceFactory';
|
|
|
|
describe('ServiceFactory', () => {
|
|
it('should be defined', () => {
|
|
expect(ServiceFactory).toBeDefined();
|
|
});
|
|
});
|