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