import { describe, it, expect } from 'vitest'; describe('smoke test', () => { it('should run', () => { expect(1 + 1).toBe(2); }); });