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