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