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

9 lines
236 B
TypeScript

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