import { describe, expect, it } from 'vitest'; // Dummy test describe('Test', () => { it('should work', () => { expect(true).toBe(true); }); });