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

推荐订阅源

腾讯CDC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
F
Fortinet All Blogs
大猫的无限游戏
大猫的无限游戏
I
InfoQ
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
有赞技术团队
有赞技术团队
G
Google Developers Blog
L
LangChain Blog
博客园_首页
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
月光博客
月光博客
IT之家
IT之家
量子位
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网

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: tighten plugin provider array assertions · openclaw...
shakkernerd · 2026-05-09 · via Recent Commits to openclaw:main

@@ -674,14 +674,14 @@ describe("resolvePluginProviders", () => {

674674

env: {} as NodeJS.ProcessEnv,

675675

onlyPluginIds: [],

676676

}),

677-

).toEqual([]);

677+

).toStrictEqual([]);

678678

expect(

679679

resolveDiscoveredProviderPluginIds({

680680

config: {},

681681

env: {} as NodeJS.ProcessEnv,

682682

onlyPluginIds: [],

683683

}),

684-

).toEqual([]);

684+

).toStrictEqual([]);

685685

});

686686687687

it.each([

@@ -1169,7 +1169,7 @@ describe("resolvePluginProviders", () => {

11691169

},

11701170

},

11711171

}),

1172-

).toEqual([]);

1172+

).toStrictEqual([]);

11731173

});

1174117411751175

it("does not activate explicit runtime owners disabled in config", () => {

@@ -1194,7 +1194,7 @@ describe("resolvePluginProviders", () => {

11941194

},

11951195

},

11961196

}),

1197-

).toEqual([]);

1197+

).toStrictEqual([]);

11981198

});

1199119912001200

it("does not activate explicit runtime owners outside the allowlist", () => {

@@ -1217,7 +1217,7 @@ describe("resolvePluginProviders", () => {

12171217

},

12181218

},

12191219

}),

1220-

).toEqual([]);

1220+

).toStrictEqual([]);

12211221

});

1222122212231223

it("uses setup.providers to keep explicit provider owners on the setup path", () => {

@@ -1326,7 +1326,7 @@ describe("resolvePluginProviders", () => {

13261326

includeUntrustedWorkspacePlugins: false,

13271327

});

132813281329-

expect(providers).toEqual([]);

1329+

expect(providers).toStrictEqual([]);

13301330

expect(loadOpenClawPluginsMock).not.toHaveBeenCalled();

13311331

});

13321332

@@ -1350,7 +1350,7 @@ describe("resolvePluginProviders", () => {

13501350

includeUntrustedWorkspacePlugins: false,

13511351

});

135213521353-

expect(providers).toEqual([]);

1353+

expect(providers).toStrictEqual([]);

13541354

expect(resolveRuntimePluginRegistryMock).not.toHaveBeenCalled();

13551355

expect(getRuntimePluginRegistryForLoadOptionsMock).not.toHaveBeenCalled();

13561356

});

@@ -1374,7 +1374,7 @@ describe("resolvePluginProviders", () => {

13741374

activate: true,

13751375

});

137613761377-

expect(providers).toEqual([]);

1377+

expect(providers).toStrictEqual([]);

13781378

expect(resolveRuntimePluginRegistryMock).not.toHaveBeenCalled();

13791379

expect(getRuntimePluginRegistryForLoadOptionsMock).not.toHaveBeenCalled();

13801380

});

@@ -1401,7 +1401,7 @@ describe("resolvePluginProviders", () => {

14011401

activate: true,

14021402

});

140314031404-

expect(providers).toEqual([]);

1404+

expect(providers).toStrictEqual([]);

14051405

expect(resolveRuntimePluginRegistryMock).not.toHaveBeenCalled();

14061406

expect(getRuntimePluginRegistryForLoadOptionsMock).not.toHaveBeenCalled();

14071407

});

@@ -1432,7 +1432,7 @@ describe("resolvePluginProviders", () => {

14321432

},

14331433

includeUntrustedWorkspacePlugins: false,

14341434

}),

1435-

).toEqual([]);

1435+

).toStrictEqual([]);

14361436

});

1437143714381438

it("does not auto-activate explicitly disabled trusted workspace runtime owners", () => {

@@ -1460,7 +1460,7 @@ describe("resolvePluginProviders", () => {

14601460

},

14611461

includeUntrustedWorkspacePlugins: false,

14621462

}),

1463-

).toEqual([]);

1463+

).toStrictEqual([]);

14641464

});

1465146514661466

it("keeps legacy CLI backend ownership as the explicit provider fallback", () => {