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

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
U
Unit 42
Vercel News
Vercel News
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
C
Check Point Blog
N
Netflix TechBlog - Medium
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
博客园_首页
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
Last Week in AI
Last Week in AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
V
Visual Studio Blog
小众软件
小众软件

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: dedupe plugin provider mock reads · openclaw/opencl...
steipete · 2026-05-13 · via Recent Commits to openclaw:main

@@ -224,12 +224,23 @@ function resolveProviderOwnersFixture(params: { providerId: string }): readonly

224224

});

225225

}

226226227-

function getLastRuntimeRegistryCall(): Record<string, unknown> {

228-

const call = resolveRuntimePluginRegistryMock.mock.calls.at(-1)?.[0];

227+

function getLastMockCallArg(

228+

mock: { mock: { calls: ReadonlyArray<ReadonlyArray<unknown>> } },

229+

label: string,

230+

): unknown {

231+

const calls = mock.mock.calls;

232+

const call = calls[calls.length - 1];

229233

if (!call) {

230-

throw new Error("expected runtime plugin registry to be resolved");

234+

throw new Error(`expected ${label} to be called`);

231235

}

232-

return call as Record<string, unknown>;

236+

return call[0];

237+

}

238+239+

function getLastRuntimeRegistryCall(): Record<string, unknown> {

240+

return getLastMockCallArg(resolveRuntimePluginRegistryMock, "runtime plugin registry") as Record<

241+

string,

242+

unknown

243+

>;

233244

}

234245235246

function cloneOptions<T>(value: T): T {

@@ -297,7 +308,7 @@ function expectLastSetupRegistryCall(params: {

297308

entries?: Record<string, { enabled?: boolean }>;

298309

};

299310

}) {

300-

const call = loadOpenClawPluginsMock.mock.calls.at(-1)?.[0];

311+

const call = getLastMockCallArg(loadOpenClawPluginsMock, "OpenClaw plugin setup loader");

301312

const options = expectRecordFields(call, {

302313

...(params.onlyPluginIds !== undefined ? { onlyPluginIds: params.onlyPluginIds } : {}),

303314

...(params.activate !== undefined ? { activate: params.activate } : {}),

@@ -327,7 +338,7 @@ function expectLastSetupRegistryLoad(params?: {

327338

env?: NodeJS.ProcessEnv;

328339

onlyPluginIds?: readonly string[];

329340

}) {

330-

const call = loadOpenClawPluginsMock.mock.calls.at(-1)?.[0];

341+

const call = getLastMockCallArg(loadOpenClawPluginsMock, "OpenClaw plugin setup loader");

331342

expectRecordFields(call, {

332343

cache: false,

333344

activate: false,

@@ -348,10 +359,10 @@ function getLastResolvedPluginConfig() {

348359

}

349360350361

function getLastSetupLoadedPluginConfig() {

351-

const call = loadOpenClawPluginsMock.mock.calls.at(-1)?.[0];

352-

if (!call) {

353-

throw new Error("expected OpenClaw plugin setup loader to be called");

354-

}

362+

const call = expectRecordFields(

363+

getLastMockCallArg(loadOpenClawPluginsMock, "OpenClaw plugin setup loader"),

364+

{},

365+

);

355366

return (call.config ?? undefined) as

356367

| {

357368

plugins?: {