UNPKG

@codai/memorai-core

Version:

Simplified advanced memory engine - no tiers, just powerful semantic search with persistence

15 lines (14 loc) 315 B
// Test setup file for Vitest import { vi } from 'vitest'; // Mock environment variables vi.mock('process', () => ({ env: { NODE_ENV: 'test', QDRANT_URL: 'http://localhost:6333', OPENAI_API_KEY: 'test-key', }, })); // Global test setup beforeEach(() => { vi.clearAllMocks(); });