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