mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 14:30:45 +00:00
chore: clean up plugin dependency wording
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user