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

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
月光博客
月光博客
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
IT之家
IT之家
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare 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: clarify core resilience test names · openclaw/openc...
steipete · 2026-05-08 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -58,12 +58,11 @@ describe("inter-session lastRoute preservation (fixes #54441)", () => {

5858

sessionKey: "agent:samantha:main",

5959

isInterSession: true,

6060

});

61-

// No external route existed — falls through to normal resolution (webchat or undefined)

62-

// The important thing is it does NOT throw and returns a defined or undefined value.

61+

// No external route existed — falls through to normal resolution (webchat or undefined).

6362

expect(result === "webchat" || result === undefined).toBe(true);

6463

});

6564
66-

it("inter-session on session with no persisted lastTo does not crash", () => {

65+

it("inter-session on session with no persisted lastTo preserves session route", () => {

6766

const result = resolveLastToRaw({

6867

originatingChannelRaw: "webchat",

6968

originatingToRaw: "session:somekey",

Original file line numberDiff line numberDiff line change

@@ -340,7 +340,7 @@ describe("runConfigureWizard", () => {

340340

expect(mocks.setupSearch).toHaveBeenCalledOnce();

341341

});

342342
343-

it("does not crash when web search providers are unavailable under plugin policy", async () => {

343+

it("notes unavailable web search providers under plugin policy", async () => {

344344

setupBaseWizardState();

345345

mocks.resolveSearchProviderOptions.mockReturnValue([]);

346346

queueWizardPrompts({

Original file line numberDiff line numberDiff line change

@@ -691,7 +691,7 @@ describe("models list/status", () => {

691691

]);

692692

});

693693
694-

it("toModelRow does not crash without cfg/authStore when availability is undefined", () => {

694+

it("toModelRow marks unavailable when cfg/authStore and availability are undefined", () => {

695695

const row = toModelRow({

696696

model: makeGoogleAntigravityTemplate(

697697

"claude-opus-4-6-thinking",

Original file line numberDiff line numberDiff line change

@@ -27,7 +27,7 @@ const opsRegressionFixtures = setupCronRegressionFixtures({

2727

});

2828
2929

describe("cron service ops regressions", () => {

30-

it("does not crash startup when a loaded job is missing state", async () => {

30+

it("repairs missing job state during startup", async () => {

3131

const scheduledAt = Date.now() + 60_000;

3232

const store = opsRegressionFixtures.makeStorePath();

3333

const state = createCronServiceState({

Original file line numberDiff line numberDiff line change

@@ -148,13 +148,12 @@ describe("drainPendingDeliveries for reconnect", () => {

148148

expect(after.lastError).toBe("transient failure");

149149

});

150150
151-

it("does not throw if delivery fails during drain", async () => {

151+

it("records retry state if delivery fails during drain", async () => {

152152

const log = createRecoveryLog();

153153

const deliver = createTransientFailureDeliver();

154154
155155

await enqueueFailedDirectChatDelivery({ accountId: "acct1", stateDir: tmpDir });

156156
157-

// Should not throw

158157

await expect(

159158

drainAcct1DirectChatReconnect({ deliver, log, stateDir: tmpDir }),

160159

).resolves.toBeUndefined();

Original file line numberDiff line numberDiff line change

@@ -89,7 +89,7 @@ function requireWarning(warnings: string[], text: string): string {

8989

}

9090
9191

describe("graceful plugin initialization failure", () => {

92-

it("does not crash when register throws", async () => {

92+

it("marks plugin entry errored when register throws", async () => {

9393

const plugin = writePlugin({

9494

id: "throws-on-register",

9595

body: `module.exports = { id: "throws-on-register", register() { throw new Error("config schema mismatch"); } };`,

Original file line numberDiff line numberDiff line change

@@ -324,7 +324,7 @@ describe("runSetupWizard", () => {

324324

return dir;

325325

}

326326
327-

it("does not crash when preferred-provider lookup sees a provider without an id", async () => {

327+

it("skips provider entries without an id during preferred-provider lookup", async () => {

328328

setupChannels.mockClear();

329329

readConfigFileSnapshot.mockResolvedValueOnce({

330330

path: "/tmp/.openclaw/openclaw.json",