Files
gridpilot.gg/apps/website/lib/command-models/leagues/LeagueWizardCommandModel.test.ts
2026-01-01 22:46:59 +01:00

9 lines
260 B
TypeScript

import { describe, it, expect } from 'vitest';
import { LeagueWizardCommandModel } from './LeagueWizardCommandModel';
describe('LeagueWizardCommandModel', () => {
it('should be defined', () => {
expect(LeagueWizardCommandModel).toBeDefined();
});
});