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

9 lines
232 B
TypeScript

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