import { describe, it, expect } from 'vitest' describe('Basic Test Setup', () => { it('should run basic tests', () => { expect(1 + 1).toBe(2) }) it('should have access to vi globals', () => { expect(vi).toBeDefined() }) })