Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 558 Bytes

File metadata and controls

38 lines (28 loc) · 558 Bytes

Running Tests

Backend

cd backend
python -m pytest

Targeted unit runs:

python -m pytest tests/unit/test_memory_service.py
python -m pytest tests/unit/test_mcp_metadata.py

Lint:

cd backend
ruff check .

Frontend

cd frontend
npm run test
npm run typecheck
npm run lint
npm run build

Notes

  • Prefer focused test files first, then full suites.
  • Mock external model calls in unit tests where possible.
  • Namespace behavior should be explicitly tested with different X-Memory-Namespace values.