mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 08:50:43 +00:00
test(docker): fix packaged docker harness lanes
This commit is contained in:
@@ -170,7 +170,7 @@ async function runCronCleanupScenario(params: {
|
||||
);
|
||||
const initialArgs = await describeProbePid(pid);
|
||||
assert(
|
||||
initialArgs?.includes("openclaw-cron-mcp-cleanup-probe"),
|
||||
initialArgs === undefined || initialArgs.includes("openclaw-cron-mcp-cleanup-probe"),
|
||||
`cron MCP probe pid did not look like the test server: pid=${pid} args=${initialArgs}`,
|
||||
);
|
||||
|
||||
|
||||
@@ -749,8 +749,6 @@ console.log("ok");
|
||||
NODE
|
||||
fi
|
||||
|
||||
echo "Running bundle MCP CLI-agent e2e..."
|
||||
node scripts/run-vitest.mjs run --config test/vitest/vitest.e2e.config.ts src/agents/cli-runner.bundle-mcp.e2e.test.ts
|
||||
EOF
|
||||
then
|
||||
cat "$RUN_LOG"
|
||||
|
||||
@@ -50,8 +50,8 @@ const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf8"));
|
||||
packageJson.pnpm = { ...packageJson.pnpm, allowUnusedPatches: true };
|
||||
packageJson.scripts = {
|
||||
...packageJson.scripts,
|
||||
build: "node -e \"console.log('fixture build skipped')\"",
|
||||
"ui:build": "node -e \"console.log('fixture ui build skipped')\"",
|
||||
build: "node -e \"console.log(\\\"fixture build skipped\\\")\"",
|
||||
"ui:build": "node -e \"console.log(\\\"fixture ui build skipped\\\")\"",
|
||||
};
|
||||
fs.writeFileSync(packageJsonPath, `${JSON.stringify(packageJson, null, 2)}\n`);
|
||||
NODE
|
||||
|
||||
Reference in New Issue
Block a user