test(docker): fix packaged docker harness lanes · openclaw/openclaw@bf08dc2
steipete
·
2026-04-27
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -170,7 +170,7 @@ async function runCronCleanupScenario(params: {
|
170 | 170 | ); |
171 | 171 | const initialArgs = await describeProbePid(pid); |
172 | 172 | assert( |
173 | | -initialArgs?.includes("openclaw-cron-mcp-cleanup-probe"), |
| 173 | +initialArgs === undefined || initialArgs.includes("openclaw-cron-mcp-cleanup-probe"), |
174 | 174 | `cron MCP probe pid did not look like the test server: pid=${pid} args=${initialArgs}`, |
175 | 175 | ); |
176 | 176 | |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -749,8 +749,6 @@ console.log("ok");
|
749 | 749 | NODE |
750 | 750 | fi |
751 | 751 | |
752 | | -echo "Running bundle MCP CLI-agent e2e..." |
753 | | -node scripts/run-vitest.mjs run --config test/vitest/vitest.e2e.config.ts src/agents/cli-runner.bundle-mcp.e2e.test.ts |
754 | 752 | EOF |
755 | 753 | then |
756 | 754 | cat "$RUN_LOG" |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -50,8 +50,8 @@ const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf8"));
|
50 | 50 | packageJson.pnpm = { ...packageJson.pnpm, allowUnusedPatches: true }; |
51 | 51 | packageJson.scripts = { |
52 | 52 | ...packageJson.scripts, |
53 | | - build: "node -e \"console.log('fixture build skipped')\"", |
54 | | - "ui:build": "node -e \"console.log('fixture ui build skipped')\"", |
| 53 | + build: "node -e \"console.log(\\\"fixture build skipped\\\")\"", |
| 54 | + "ui:build": "node -e \"console.log(\\\"fixture ui build skipped\\\")\"", |
55 | 55 | }; |
56 | 56 | fs.writeFileSync(packageJsonPath, `${JSON.stringify(packageJson, null, 2)}\n`); |
57 | 57 | NODE |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。