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