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