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