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