import { describe, it, expect } from 'vitest'; import StatCard from '$lib/components/common/StatCard.svelte'; describe('StatCard component', () => { it('exports a component module', () => { expect(StatCard).toBeDefined(); }); });