惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
H
Help Net Security
V
Visual Studio Blog
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
Last Week in AI
Last Week in AI
C
Check Point Blog
D
Docker
M
MIT News - Artificial intelligence
P
Proofpoint News Feed
博客园 - 叶小钗
博客园 - 聂微东
The Cloudflare Blog
云风的 BLOG
云风的 BLOG
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
腾讯CDC
S
SegmentFault 最新的问题
博客园 - 【当耐特】

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test: clarify plugin install log assertions · openclaw/op...
shakkernerd · 2026-05-08 · via Recent Commits to openclaw:main

@@ -475,8 +475,10 @@ describe("plugins cli install", () => {

475475

nextConfig: enabledCfg,

476476

}),

477477

);

478-

expect(runtimeLogs.some((line) => line.includes("slot adjusted"))).toBe(true);

479-

expect(runtimeLogs.some((line) => line.includes("Installed plugin: alpha"))).toBe(true);

478+

expect(runtimeLogs).toEqual(expect.arrayContaining([expect.stringContaining("slot adjusted")]));

479+

expect(runtimeLogs).toEqual(

480+

expect.arrayContaining([expect.stringContaining("Installed plugin: alpha")]),

481+

);

480482

});

481483482484

it("passes force through as overwrite mode for marketplace installs", async () => {

@@ -539,7 +541,9 @@ describe("plugins cli install", () => {

539541

}),

540542

});

541543

expect(writeConfigFile).toHaveBeenCalledWith(enabledCfg);

542-

expect(runtimeLogs.some((line) => line.includes("Installed plugin: demo"))).toBe(true);

544+

expect(runtimeLogs).toEqual(

545+

expect.arrayContaining([expect.stringContaining("Installed plugin: demo")]),

546+

);

543547

expect(installPluginFromNpmSpec).not.toHaveBeenCalled();

544548

});

545549

@@ -618,7 +622,9 @@ describe("plugins cli install", () => {

618622

});

619623

expect(enablePluginInConfig).not.toHaveBeenCalled();

620624

expect(applyExclusiveSlotSelection).not.toHaveBeenCalled();

621-

expect(runtimeLogs.some((line) => line.includes("requires configuration first"))).toBe(true);

625+

expect(runtimeLogs).toEqual(

626+

expect.arrayContaining([expect.stringContaining("requires configuration first")]),

627+

);

622628

});

623629624630

it("enables config-gated bundled installs when provider-backed config is explicit", async () => {

@@ -656,7 +662,9 @@ describe("plugins cli install", () => {

656662657663

expect(enablePluginInConfig).toHaveBeenCalled();

658664

expect(writeConfigFile).toHaveBeenCalledWith(enabledCfg);

659-

expect(runtimeLogs.some((line) => line.includes("requires configuration first"))).toBe(false);

665+

expect(runtimeLogs).not.toEqual(

666+

expect.arrayContaining([expect.stringContaining("requires configuration first")]),

667+

);

660668

});

661669662670

it("passes force through as overwrite mode for ClawHub installs", async () => {

@@ -1807,7 +1815,9 @@ describe("plugins cli install", () => {

18071815

path: localHookDir,

18081816

}),

18091817

);

1810-

expect(runtimeLogs.some((line) => line.includes("Installed hook pack: demo-hooks"))).toBe(true);

1818+

expect(runtimeLogs).toEqual(

1819+

expect.arrayContaining([expect.stringContaining("Installed hook pack: demo-hooks")]),

1820+

);

18111821

});

1812182218131823

it("still falls back to npm hook pack when dangerous force unsafe install is set for non-security errors", async () => {

@@ -1862,7 +1872,9 @@ describe("plugins cli install", () => {

18621872

spec: "@acme/demo-hooks",

18631873

}),

18641874

);

1865-

expect(runtimeLogs.some((line) => line.includes("Installed hook pack: demo-hooks"))).toBe(true);

1875+

expect(runtimeLogs).toEqual(

1876+

expect.arrayContaining([expect.stringContaining("Installed hook pack: demo-hooks")]),

1877+

);

18661878

});

1867187918681880

it("does not fall back to npm when explicit ClawHub rejects a real package", async () => {

@@ -1899,7 +1911,9 @@ describe("plugins cli install", () => {

18991911

}),

19001912

);

19011913

expect(writeConfigFile).toHaveBeenCalledWith(installedCfg);

1902-

expect(runtimeLogs.some((line) => line.includes("Installed hook pack: demo-hooks"))).toBe(true);

1914+

expect(runtimeLogs).toEqual(

1915+

expect.arrayContaining([expect.stringContaining("Installed hook pack: demo-hooks")]),

1916+

);

19031917

});

1904191819051919

it("passes force through as overwrite mode for hook-pack npm fallback installs", async () => {