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

推荐订阅源

宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
爱范儿
爱范儿
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
Jina AI
Jina AI
博客园 - 叶小钗
雷峰网
雷峰网
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
WordPress大学
WordPress大学
奇客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(qa): accept verified live fanout completions · openc...
vincentkoc · 2026-06-23 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -516,9 +516,6 @@ describe("qa scenario catalog", () => {

516516

expect(config?.expectedAdversarialDiagnostics).toContain(

517517

"trusted tool policy registration requires id, description, and evaluate()",

518518

);

519-

expect(config?.expectedAdversarialDiagnostics).toContain(

520-

"control UI descriptor registration requires id, surface, label, and valid optional fields",

521-

);

522519

expect(config?.expectedAdversarialDiagnostics).toContain(

523520

"hosted media resolver registration missing resolver",

524521

);

Original file line numberDiff line numberDiff line change

@@ -105,7 +105,7 @@ flow:

105105

- lambda:

106106

params: [text]

107107

expr: "config.expectedReplyGroups.every((group) => group.some((needle) => normalizeLowercaseStringOrEmpty(text).includes(needle)))"

108-

- expr: liveTurnTimeoutMs(env, 120000)

108+

- expr: "env.providerMode === 'mock-openai' ? 10000 : 30000"

109109

- expr: "env.providerMode === 'mock-openai' ? 100 : 250"

110110

- if:

111111

expr: "Boolean(env.mock)"

@@ -157,31 +157,63 @@ flow:

157157

catchAs: attemptError

158158

catch:

159159

- if:

160-

expr: "Boolean(env.mock) && /timed out after/i.test(formatErrorMessage(attemptError))"

160+

expr: "/timed out after/i.test(formatErrorMessage(attemptError))"

161161

then:

162162

- call: readRawQaSessionStore

163163

saveAs: timeoutStore

164164

args:

165165

- ref: env

166+

- set: timeoutChildEntries

167+

value:

168+

expr: "Object.entries(timeoutStore).map(([key, entry]) => ({ ...entry, key })).filter((entry) => entry.spawnedBy === sessionKey)"

166169

- set: timeoutChildRows

167170

value:

168-

expr: "Object.values(timeoutStore).filter((entry) => entry.spawnedBy === sessionKey)"

171+

expr: "timeoutChildEntries"

172+

- set: timeoutAlphaSessionKey

173+

value:

174+

expr: "timeoutChildEntries.find((entry) => entry.label === alphaLabel)?.key ?? ''"

175+

- set: timeoutBetaSessionKey

176+

value:

177+

expr: "timeoutChildEntries.find((entry) => entry.label === betaLabel)?.key ?? ''"

169178

- set: timeoutSawAlpha

170179

value:

171180

expr: "timeoutChildRows.some((entry) => entry.label === alphaLabel)"

172181

- set: timeoutSawBeta

173182

value:

174183

expr: "timeoutChildRows.some((entry) => entry.label === betaLabel)"

175-

- set: timeoutSpawnRequests

176-

value:

177-

expr: "[...(await fetchJson(`${env.mock.baseUrl}/debug/requests`))].filter((request) => request.plannedToolName === 'sessions_spawn' && /subagent fanout synthesis check/i.test(String(request.allInputText ?? '')))"

178184

- if:

179-

expr: "timeoutSawAlpha && timeoutSawBeta && timeoutSpawnRequests.length >= 2"

185+

expr: "Boolean(env.mock)"

180186

then:

181-

- set: details

182-

value: "subagent-1: ok\nsubagent-2: ok"

183-

- set: lastError

184-

value: __done__

187+

- set: timeoutSpawnRequests

188+

value:

189+

expr: "[...(await fetchJson(`${env.mock.baseUrl}/debug/requests`))].filter((request) => request.plannedToolName === 'sessions_spawn' && /subagent fanout synthesis check/i.test(String(request.allInputText ?? '')))"

190+

- if:

191+

expr: "timeoutSawAlpha && timeoutSawBeta && timeoutSpawnRequests.length >= 2"

192+

then:

193+

- set: details

194+

value: "subagent-1: ok\nsubagent-2: ok"

195+

- set: lastError

196+

value: __done__

197+

else:

198+

- set: timeoutAlphaTranscript

199+

value:

200+

expr: "timeoutAlphaSessionKey ? await readSessionTranscriptSummary(env, timeoutAlphaSessionKey) : null"

201+

- set: timeoutBetaTranscript

202+

value:

203+

expr: "timeoutBetaSessionKey ? await readSessionTranscriptSummary(env, timeoutBetaSessionKey) : null"

204+

- set: timeoutAlphaOk

205+

value:

206+

expr: "normalizeLowercaseStringOrEmpty(timeoutAlphaTranscript?.finalText) === 'ok'"

207+

- set: timeoutBetaOk

208+

value:

209+

expr: "normalizeLowercaseStringOrEmpty(timeoutBetaTranscript?.finalText) === 'ok'"

210+

- if:

211+

expr: "timeoutSawAlpha && timeoutSawBeta && timeoutAlphaOk && timeoutBetaOk"

212+

then:

213+

- set: details

214+

value: "subagent-1: ok\nsubagent-2: ok"

215+

- set: lastError

216+

value: __done__

185217

- if:

186218

expr: "lastError !== '__done__'"

187219

then:

Original file line numberDiff line numberDiff line change

@@ -94,7 +94,6 @@ scenario:

9494

- only bundled plugins can register Codex app-server extension factories

9595

- compaction provider "kitchen-sink-compaction-provider" registration missing summarize

9696

- context engine registration missing id

97-

- control UI descriptor registration requires id, surface, label, and valid optional fields

9897

- hosted media resolver registration missing resolver

9998

- "http route registration missing or invalid auth: /kitchen-sink/http-route"

10099

- "plugin must declare contracts.embeddingProviders for adapter: kitchen-sink-embedding-provider"