@@ -104,7 +104,6 @@ export function createHarnessEnv(params: {
|
104 | 104 | OPENCLAW_NPM_TELEGRAM_PACKAGE_LABEL: `${params.spec} (${params.version})`, |
105 | 105 | OPENCLAW_NPM_TELEGRAM_PROVIDER_MODE: params.providerMode, |
106 | 106 | OPENCLAW_NPM_TELEGRAM_SCENARIOS: params.scenarios.join(","), |
107 | | -OPENCLAW_NPM_TELEGRAM_SKIP_HOTPATH: "1", |
108 | 107 | OPENCLAW_NPM_TELEGRAM_OUTPUT_DIR: params.rawOutputDir, |
109 | 108 | OPENCLAW_NPM_TELEGRAM_FAST: params.baseEnv.OPENCLAW_NPM_TELEGRAM_FAST ?? "1", |
110 | 109 | OPENCLAW_QA_TELEGRAM_CANARY_TIMEOUT_MS: String(params.timeoutMs), |
@@ -120,7 +119,7 @@ export function assertRequiredEnv(env: NodeJS.ProcessEnv) {
|
120 | 119 | } |
121 | 120 | |
122 | 121 | export async function assertHarnessRoot(harnessRoot: string) { |
123 | | -const scriptPath = path.join(harnessRoot, "scripts/e2e/npm-telegram-live-docker.sh"); |
| 122 | +const scriptPath = path.join(harnessRoot, "scripts/e2e/npm-telegram-rtt-docker.sh"); |
124 | 123 | try { |
125 | 124 | await fs.access(scriptPath); |
126 | 125 | } catch { |
@@ -164,7 +163,7 @@ export async function appendJsonl(pathname: string, value: unknown) {
|
164 | 163 | } |
165 | 164 | |
166 | 165 | export async function runHarness(params: { env: NodeJS.ProcessEnv; harnessRoot: string }) { |
167 | | -const scriptPath = path.join(params.harnessRoot, "scripts/e2e/npm-telegram-live-docker.sh"); |
| 166 | +const scriptPath = path.join(params.harnessRoot, "scripts/e2e/npm-telegram-rtt-docker.sh"); |
168 | 167 | const child = spawn("bash", [scriptPath], { |
169 | 168 | cwd: params.harnessRoot, |
170 | 169 | env: params.env, |
|