Files
clh02467605 d646a4e780 refactor(e2e): update test routes and streamline command handling
- Replaced hardcoded command paths with dynamic route mappings in E2E tests.
- Enhanced documentation for command testing, specifying minimum route requirements.
- Consolidated command path management into `topic-routes.ts` for better maintainability.
- Updated various E2E test cases to utilize the new routing structure, ensuring consistency across tests.
- Removed redundant helper functions and improved test clarity by directly referencing route exports.
2026-07-10 15:55:53 +08:00

27 lines
671 B
JSON

{
"name": "e2e",
"version": "0.0.0",
"private": true,
"description": "Shared E2E harness utilities for bailian-cli monorepo (not published).",
"type": "module",
"exports": {
"./gating": "./src/gating.ts",
"./runner": "./src/run-subprocess.ts",
"./output": "./src/output.ts",
"./global-setup": "./src/global-setup.ts",
"./monorepo-root": "./src/monorepo-root.ts",
"./registry-smoke": "./src/registry-smoke.ts"
},
"dependencies": {
"bailian-cli-core": "workspace:*"
},
"devDependencies": {
"@types/node": "catalog:",
"typescript": "^6.0.2",
"vite-plus": "0.1.22"
},
"engines": {
"node": ">=22.12.0"
}
}