10 lines
294 B
TypeScript
10 lines
294 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import type { ProtestDetailViewModel } from './ProtestDetailViewModel';
|
|
|
|
describe('ProtestDetailViewModel', () => {
|
|
it('should be defined', () => {
|
|
const _value: ProtestDetailViewModel | null = null;
|
|
expect(_value).toBeNull();
|
|
});
|
|
});
|