fix(scripts): avoid pnpm in parallels smoke wrappers · openclaw/openclaw@2c3b582
vincentkoc
·
2026-06-19
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -274,9 +274,9 @@ describe("Parallels smoke model selection", () => {
|
274 | 274 | : TS_PATHS[platform as "linux" | "macos" | "windows"]; |
275 | 275 | |
276 | 276 | expect(wrapper, wrapperPath).toContain('cd "$ROOT_DIR"'); |
277 | | -expect(wrapper, wrapperPath).toContain(`exec pnpm exec tsx ${scriptPath}`); |
278 | 277 | expect(wrapper, wrapperPath).toContain(`exec node --import tsx ${scriptPath}`); |
279 | | -expect(countNonEmptyLines(wrapper)).toBeLessThanOrEqual(9); |
| 278 | +expect(wrapper, wrapperPath).not.toContain("pnpm exec tsx"); |
| 279 | +expect(countNonEmptyLines(wrapper)).toBeLessThanOrEqual(6); |
280 | 280 | } |
281 | 281 | }); |
282 | 282 | |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。