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

推荐订阅源

人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
月光博客
月光博客
T
Tailwind CSS Blog
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
量子位
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
博客园 - 聂微东
V
V2EX

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: stabilize release validation flakes · openclaw/open...
steipete · 2026-05-18 · via Recent Commits to openclaw:main

@@ -655,9 +655,7 @@ describe("runCodexAppServerAttempt", () => {

655655

};

656656657657

expect(

658-

__testing

659-

.filterCodexDynamicTools(tools, {}, privateQaCodexEnv)

660-

.map((tool) => tool.name),

658+

__testing.filterCodexDynamicTools(tools, {}, privateQaCodexEnv).map((tool) => tool.name),

661659

).toEqual(["read", "write", "image_generate", "message"]);

662660

expect(__testing.resolveCodexDynamicToolsLoading({}, privateQaCodexEnv)).toBe("direct");

663661

});

@@ -1657,7 +1655,7 @@ describe("runCodexAppServerAttempt", () => {

16571655

path.join(tempDir, "session.jsonl"),

16581656

path.join(tempDir, "workspace"),

16591657

);

1660-

params.timeoutMs = 100;

1658+

params.timeoutMs = 250;

1661165916621660

const result = await runCodexAppServerAttempt(params);

16631661

@@ -1694,6 +1692,13 @@ describe("runCodexAppServerAttempt", () => {

16941692

turnTerminalIdleTimeoutMs: 300,

16951693

});

16961694

await harness.waitForMethod("turn/start");

1695+

await vi.waitFor(

1696+

() =>

1697+

expect(onRunProgress).toHaveBeenCalledWith(

1698+

expect.objectContaining({ reason: "turn:start" }),

1699+

),

1700+

fastWait,

1701+

);

1697170216981703

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

16991704

await harness.notify({

@@ -1756,6 +1761,13 @@ describe("runCodexAppServerAttempt", () => {

17561761

turnTerminalIdleTimeoutMs: 500,

17571762

});

17581763

await harness.waitForMethod("turn/start");

1764+

await vi.waitFor(

1765+

() =>

1766+

expect(onRunProgress).toHaveBeenCalledWith(

1767+

expect.objectContaining({ reason: "turn:start" }),

1768+

),

1769+

fastWait,

1770+

);

1759177117601772

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

17611773

await harness.handleServerRequest({

@@ -1840,13 +1852,22 @@ describe("runCodexAppServerAttempt", () => {

18401852

path.join(tempDir, "workspace"),

18411853

);

18421854

params.timeoutMs = 100;

1855+

const onRunProgress = vi.fn();

1856+

params.onRunProgress = onRunProgress;

1843185718441858

const run = runCodexAppServerAttempt(params, {

18451859

turnCompletionIdleTimeoutMs: 300,

18461860

turnAssistantCompletionIdleTimeoutMs: 300,

18471861

turnTerminalIdleTimeoutMs: 300,

18481862

});

18491863

await harness.waitForMethod("turn/start");

1864+

await vi.waitFor(

1865+

() =>

1866+

expect(onRunProgress).toHaveBeenCalledWith(

1867+

expect.objectContaining({ reason: "turn:start" }),

1868+

),

1869+

fastWait,

1870+

);

1850187118511872

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

18521873

await harness.handleServerRequest({

@@ -1879,17 +1900,26 @@ describe("runCodexAppServerAttempt", () => {

18791900

path.join(tempDir, "session.jsonl"),

18801901

path.join(tempDir, "workspace"),

18811902

);

1882-

params.timeoutMs = 100;

1903+

params.timeoutMs = 250;

18831904

params.onBlockReply = vi.fn();

1905+

const onRunProgress = vi.fn();

1906+

params.onRunProgress = onRunProgress;

1884190718851908

const run = runCodexAppServerAttempt(params, {

1886-

turnCompletionIdleTimeoutMs: 300,

1887-

turnAssistantCompletionIdleTimeoutMs: 300,

1888-

turnTerminalIdleTimeoutMs: 300,

1909+

turnCompletionIdleTimeoutMs: 600,

1910+

turnAssistantCompletionIdleTimeoutMs: 600,

1911+

turnTerminalIdleTimeoutMs: 600,

18891912

});

18901913

await harness.waitForMethod("turn/start");

1914+

await vi.waitFor(

1915+

() =>

1916+

expect(onRunProgress).toHaveBeenCalledWith(

1917+

expect.objectContaining({ reason: "turn:start" }),

1918+

),

1919+

fastWait,

1920+

);

189119211892-

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

1922+

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

18931923

const response = harness.handleServerRequest({

18941924

id: "request-user-input",

18951925

method: "item/tool/requestUserInput",

@@ -1913,7 +1943,7 @@ describe("runCodexAppServerAttempt", () => {

19131943

},

19141944

});

19151945

await vi.waitFor(() => expect(params.onBlockReply).toHaveBeenCalledTimes(1), fastWait);

1916-

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

1946+

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

1917194719181948

expect(harness.request.mock.calls.some(([method]) => method === "turn/interrupt")).toBe(false);

19191949

expect(queueActiveRunMessageForTest("session-1", "2")).toBe(true);