import { describe, test, expect } from 'vitest'; describe('Simple Test', () => { test('should work', () => { expect(1 + 1).toBe(2); }); });