describe('Jest Setup Validation', () => { it('should have Jest working correctly', () => { expect(true).toBe(true) }) it('should have environment variables set', () => { expect(process.env.NEXT_PUBLIC_API_URL).toBe('http://localhost:8000/api') }) it('should have test utilities loaded', () => { expect(jest).toBeDefined() }) })