Files
LlamaIndexTS/e2e
github-actions[bot] 38487da65d Release 0.11.23 (#2136)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: marcusschiesser <17126+marcusschiesser@users.noreply.github.com>
2025-07-28 14:07:23 +08:00
..
2025-07-28 14:07:23 +08:00
2025-07-22 12:18:09 +08:00
2025-06-26 14:03:03 +07:00
2024-11-19 17:51:45 -08:00
2025-05-19 12:23:04 +07:00
2025-05-26 16:49:45 +07:00
2025-07-10 19:00:37 -07:00
2024-11-07 20:11:15 -08:00

LlamaIndexTS Core E2E Tests

Overview

We are using Node.js Test Runner to run E2E tests for LlamaIndexTS Core.

It supports the following features:

  • Run tests in parallel
  • Pure Node.js Environment
  • Switch between mock and real LLM API
  • Customizable logics

Usage

  • Run with mock register:
node --import tsx --import ./mock-register.js --test ./node/basic.e2e.ts
  • Run without mock register:
node --import tsx --test ./node/basic.e2e.ts
  • Run with specific test:
node --import tsx --import ./mock-register.js --test-name-pattern=agent --test ./node/basic.e2e.ts
  • Run with debug logs:
CONSOLA_LEVEL=5 node --import tsx --import ./mock-register.js --test-name-pattern=agent --test ./node/basic.e2e.ts