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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
Last Week in AI
Last Week in AI
腾讯CDC
The Cloudflare Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
I
InfoQ
雷峰网
雷峰网
人人都是产品经理
人人都是产品经理
Blog — PlanetScale
Blog — PlanetScale
Y
Y Combinator Blog
H
Help Net Security
T
Tailwind CSS Blog
美团技术团队
aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed

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: weigh codex turn results · openclaw/openclaw@af20c89
shakkernerd · 2026-05-13 · via Recent Commits to openclaw:main

@@ -1670,7 +1670,12 @@ describe("runCodexAppServerAttempt", () => {

16701670

await harness.notify(rateLimitsUpdated(Date.now() + 60_000));

16711671

await new Promise((resolve) => setTimeout(resolve, 20));

167216721673-

await expect(run).resolves.toMatchObject({

1673+

const result = await run;

1674+

expect({

1675+

aborted: result.aborted,

1676+

timedOut: result.timedOut,

1677+

promptError: result.promptError,

1678+

}).toEqual({

16741679

aborted: true,

16751680

timedOut: true,

16761681

promptError: "codex app-server turn idle timed out waiting for turn/completed",

@@ -1738,7 +1743,13 @@ describe("runCodexAppServerAttempt", () => {

17381743

},

17391744

});

174017451741-

await expect(run).resolves.toMatchObject({

1746+

const result = await run;

1747+

expect({

1748+

aborted: result.aborted,

1749+

timedOut: result.timedOut,

1750+

promptError: result.promptError,

1751+

assistantTexts: result.assistantTexts,

1752+

}).toEqual({

17421753

aborted: false,

17431754

timedOut: false,

17441755

promptError: null,

@@ -1815,7 +1826,13 @@ describe("runCodexAppServerAttempt", () => {

18151826

},

18161827

});

181718281818-

await expect(run).resolves.toMatchObject({

1829+

const result = await run;

1830+

expect({

1831+

aborted: result.aborted,

1832+

timedOut: result.timedOut,

1833+

promptError: result.promptError,

1834+

assistantTexts: result.assistantTexts,

1835+

}).toEqual({

18191836

aborted: false,

18201837

timedOut: false,

18211838

promptError: null,

@@ -1900,7 +1917,13 @@ describe("runCodexAppServerAttempt", () => {

19001917

},

19011918

});

190219191903-

await expect(run).resolves.toMatchObject({

1920+

const result = await run;

1921+

expect({

1922+

aborted: result.aborted,

1923+

timedOut: result.timedOut,

1924+

promptError: result.promptError,

1925+

assistantTexts: result.assistantTexts,

1926+

}).toEqual({

19041927

aborted: false,

19051928

timedOut: false,

19061929

promptError: null,

@@ -1986,7 +2009,13 @@ describe("runCodexAppServerAttempt", () => {

19862009

},

19872010

});

198820111989-

await expect(run).resolves.toMatchObject({

2012+

const result = await run;

2013+

expect({

2014+

aborted: result.aborted,

2015+

timedOut: result.timedOut,

2016+

promptError: result.promptError,

2017+

assistantTexts: result.assistantTexts,

2018+

}).toEqual({

19902019

aborted: false,

19912020

timedOut: false,

19922021

promptError: null,

@@ -2046,7 +2075,12 @@ describe("runCodexAppServerAttempt", () => {

20462075

});

20472076

await new Promise((resolve) => setTimeout(resolve, 20));

204820772049-

await expect(run).resolves.toMatchObject({

2078+

const result = await run;

2079+

expect({

2080+

aborted: result.aborted,

2081+

timedOut: result.timedOut,

2082+

promptError: result.promptError,

2083+

}).toEqual({

20502084

aborted: true,

20512085

timedOut: true,

20522086

promptError: "codex app-server turn idle timed out waiting for turn/completed",

@@ -2122,7 +2156,13 @@ describe("runCodexAppServerAttempt", () => {

21222156

},

21232157

});

212421582125-

await expect(run).resolves.toMatchObject({

2159+

const result = await run;

2160+

expect({

2161+

aborted: result.aborted,

2162+

timedOut: result.timedOut,

2163+

promptError: result.promptError,

2164+

assistantTexts: result.assistantTexts,

2165+

}).toEqual({

21262166

aborted: false,

21272167

timedOut: false,

21282168

promptError: null,