9 lines
273 B
TypeScript
9 lines
273 B
TypeScript
import * as mod from '@core/racing/domain/value-objects/RecurrenceStrategyFactory';
|
|
import { describe, expect, it } from 'vitest';
|
|
|
|
describe('racing/domain/value-objects/RecurrenceStrategyFactory.ts', () => {
|
|
it('imports', () => {
|
|
expect(mod).toBeTruthy();
|
|
});
|
|
});
|