chore: clean up plugin dependency wording

This commit is contained in:
Peter Steinberger
2026-05-01 21:39:03 +01:00
parent 4b7a000dcb
commit 1e4f511f0a
5 changed files with 9 additions and 9 deletions

View File

@@ -64,8 +64,8 @@ describe("managed Codex app-server binary", () => {
);
});
it("finds Codex in the external runtime-deps install root used by packaged plugins", async () => {
const installRoot = path.join("/tmp", "openclaw-runtime-deps", "codex");
it("finds Codex in the package install root used by packaged plugins", async () => {
const installRoot = path.join("/tmp", "openclaw-plugin-package", "codex");
const pluginRoot = path.join(installRoot, "dist", "extensions", "codex");
const installedCommand = managedCommandPath(installRoot, "linux");
const pathExists = vi.fn(async (filePath: string) => filePath === installedCommand);
@@ -83,7 +83,7 @@ describe("managed Codex app-server binary", () => {
});
});
it("fails clearly when bundled runtime deps did not stage Codex", async () => {
it("fails clearly when the managed Codex binary is missing", async () => {
await expect(
resolveManagedCodexAppServerStartOptions(startOptions("managed"), {
platform: "darwin",

View File

@@ -194,7 +194,7 @@ describe("qa suite runtime agent process helpers", () => {
child.stdout.emit(
"data",
Buffer.from(
'\u001b[35m[plugins]\u001b[39m \u001b[36mcodex installed bundled runtime deps\u001b[39m\n{"results":[{"text":"ORBIT-10"}]}\n',
'\u001b[35m[plugins]\u001b[39m \u001b[36mcodex loaded plugin package metadata\u001b[39m\n{"results":[{"text":"ORBIT-10"}]}\n',
),
);
child.emit("exit", 0);
@@ -225,7 +225,7 @@ describe("qa suite runtime agent process helpers", () => {
child.stdout.emit(
"data",
Buffer.from(
'[plugins] memory-core installed bundled runtime deps\n{\n "results": [\n {\n "text": "ORBIT-10"\n }\n ]\n}\n',
'[plugins] memory-core loaded plugin package metadata\n{\n "results": [\n {\n "text": "ORBIT-10"\n }\n ]\n}\n',
),
);
child.emit("exit", 0);