## Server Testing Utils - Add TestServer, TestClient, MockRoom for unit testing - Export testing utilities from @esengine/server/testing ## Transaction Storage (BREAKING) - Simplify RedisStorage/MongoStorage to factory pattern only - Remove DI client injection option - Add lazy connection and Symbol.asyncDispose support - Add 161 unit tests with full coverage ## Pathfinding Tests - Add 150 unit tests covering all components - BinaryHeap, Heuristics, AStarPathfinder, GridMap, NavMesh, PathSmoother ## Docs - Update storage.md for new factory pattern API
16 lines
299 B
TypeScript
16 lines
299 B
TypeScript
/**
|
|
* @zh 分布式模块导出
|
|
* @en Distributed module exports
|
|
*/
|
|
|
|
export {
|
|
SagaOrchestrator,
|
|
createSagaOrchestrator,
|
|
type SagaOrchestratorConfig,
|
|
type SagaStep,
|
|
type SagaStepState,
|
|
type SagaStepLog,
|
|
type SagaLog,
|
|
type SagaResult
|
|
} from './SagaOrchestrator.js';
|