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

推荐订阅源

Martin Fowler
Martin Fowler
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
博客园_首页
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
美团技术团队
IT之家
IT之家
罗磊的独立博客
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
月光博客
月光博客
Microsoft Azure Blog
Microsoft Azure Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园 - 叶小钗
M
MIT News - Artificial intelligence
B
Blog RSS Feed
有赞技术团队
有赞技术团队
Y
Y Combinator 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: tighten agent helper array assertions · openclaw/op...
shakkernerd · 2026-05-09 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -187,7 +187,7 @@ describe("resolveAuthProfileOrder", () => {

187187

provider: "fixture-provider",

188188

});

189189
190-

expect(order).toEqual([]);

190+

expect(order).toStrictEqual([]);

191191

});

192192
193193

it("keeps explicit empty stored auth order as a provider disable", async () => {

@@ -218,7 +218,7 @@ describe("resolveAuthProfileOrder", () => {

218218

provider: "fixture-provider",

219219

});

220220
221-

expect(order).toEqual([]);

221+

expect(order).toStrictEqual([]);

222222

});

223223
224224

it("marks aliased provider profiles good under the canonical auth provider", async () => {

Original file line numberDiff line numberDiff line change

@@ -164,7 +164,7 @@ async function expectBackgroundSessionSurvivesAbort(params: {

164164

const running = getSession(sessionId);

165165

const finished = getFinishedSession(sessionId);

166166

try {

167-

expect(supervisorMockState.cancelReasons).toEqual([]);

167+

expect(supervisorMockState.cancelReasons).toStrictEqual([]);

168168

expect(finished).toBeUndefined();

169169

expect(running?.exited).toBe(false);

170170

} finally {

Original file line numberDiff line numberDiff line change

@@ -29,7 +29,7 @@ describe("resolveSandboxWorkdir", () => {

2929
3030

expect(resolved.hostWorkdir).toBe(workspaceDir);

3131

expect(resolved.containerWorkdir).toBe("/workspace");

32-

expect(warnings).toEqual([]);

32+

expect(warnings).toStrictEqual([]);

3333

});

3434

});

3535

@@ -50,7 +50,7 @@ describe("resolveSandboxWorkdir", () => {

5050
5151

expect(resolved.hostWorkdir).toBe(nested);

5252

expect(resolved.containerWorkdir).toBe("/workspace/scripts/runner");

53-

expect(warnings).toEqual([]);

53+

expect(warnings).toStrictEqual([]);

5454

});

5555

});

5656

@@ -71,7 +71,7 @@ describe("resolveSandboxWorkdir", () => {

7171
7272

expect(resolved.hostWorkdir).toBe(nested);

7373

expect(resolved.containerWorkdir).toBe("/sandbox-root/project");

74-

expect(warnings).toEqual([]);

74+

expect(warnings).toStrictEqual([]);

7575

});

7676

});

7777

});

Original file line numberDiff line numberDiff line change

@@ -187,7 +187,7 @@ describe("resolveBootstrapContextForRun", () => {

187187
188188

expect(files.length).toBeGreaterThan(0);

189189

const nonHeartbeatFiles = files.filter((file) => file.name !== "HEARTBEAT.md");

190-

expect(nonHeartbeatFiles).toEqual([]);

190+

expect(nonHeartbeatFiles).toStrictEqual([]);

191191

});

192192
193193

it("keeps bootstrap context empty in lightweight cron mode", async () => {

@@ -200,7 +200,7 @@ describe("resolveBootstrapContextForRun", () => {

200200

runKind: "cron",

201201

});

202202
203-

expect(files).toEqual([]);

203+

expect(files).toStrictEqual([]);

204204

});

205205
206206

it("drops HEARTBEAT.md for non-heartbeat runs when the heartbeat prompt section is disabled", async () => {

Original file line numberDiff line numberDiff line change

@@ -264,7 +264,7 @@ describe("pruneHistoryForContextShare", () => {

264264

expect(pruned.droppedChunks).toBe(0);

265265

expect(pruned.messages.length).toBe(messages.length);

266266

expect(pruned.keptTokens).toBe(estimateMessagesTokens(messages));

267-

expect(pruned.droppedMessagesList).toEqual([]);

267+

expect(pruned.droppedMessagesList).toStrictEqual([]);

268268

});

269269
270270

it("returns droppedMessagesList containing dropped messages", () => {

@@ -291,7 +291,7 @@ describe("pruneHistoryForContextShare", () => {

291291

});

292292
293293

expect(pruned.droppedChunks).toBe(0);

294-

expect(pruned.droppedMessagesList).toEqual([]);

294+

expect(pruned.droppedMessagesList).toStrictEqual([]);

295295

expect(pruned.messages.length).toBe(1);

296296

});

297297
Original file line numberDiff line numberDiff line change

@@ -1336,7 +1336,7 @@ describe("sessions tools", () => {

13361336

"Agent-to-agent reply step",

13371337

),

13381338

);

1339-

expect(replyPromptAgentCalls).toEqual([]);

1339+

expect(replyPromptAgentCalls).toStrictEqual([]);

13401340

expect(calls.some((call) => call.method === "send")).toBe(false);

13411341

});

13421342
Original file line numberDiff line numberDiff line change

@@ -467,7 +467,7 @@ describe("session MCP runtime", () => {

467467

await expect(manager.sweepIdleRuntimes()).resolves.toBe(1);

468468
469469

expect(disposed).toEqual(["session-idle"]);

470-

expect(manager.listSessionIds()).toEqual([]);

470+

expect(manager.listSessionIds()).toStrictEqual([]);

471471

expect(manager.resolveSessionId("agent:test:session-idle")).toBeUndefined();

472472

});

473473

@@ -498,6 +498,6 @@ describe("session MCP runtime", () => {

498498

now += 60_000_000;

499499

await expect(manager.sweepIdleRuntimes()).resolves.toBe(0);

500500

expect(manager.listSessionIds()).toEqual(["session-no-ttl"]);

501-

expect(disposed).toEqual([]);

501+

expect(disposed).toStrictEqual([]);

502502

});

503503

});

Original file line numberDiff line numberDiff line change

@@ -57,7 +57,7 @@ describe("buildBootstrapContextFiles", () => {

5757

});

5858

it("skips empty or whitespace-only content", () => {

5959

const files = [makeFile({ content: " \n " })];

60-

expect(buildBootstrapContextFiles(files)).toEqual([]);

60+

expect(buildBootstrapContextFiles(files)).toStrictEqual([]);

6161

});

6262

it("truncates large bootstrap content", () => {

6363

const head = `HEAD-${"a".repeat(600)}`;

@@ -178,7 +178,7 @@ describe("buildBootstrapContextFiles", () => {

178178

maxChars: 200,

179179

totalMaxChars: 40,

180180

});

181-

expect(result).toEqual([]);

181+

expect(result).toStrictEqual([]);

182182

});

183183
184184

it("keeps missing markers under small total budgets", () => {

@@ -222,7 +222,7 @@ describe("buildBootstrapContextFiles", () => {

222222

expect(warnings).toHaveLength(3);

223223

expect(

224224

warnings.filter((warning) => !warning.includes('missing or invalid "path" field')),

225-

).toEqual([]);

225+

).toStrictEqual([]);

226226

});

227227

});

228228
Original file line numberDiff line numberDiff line change

@@ -506,7 +506,7 @@ describe("stripThoughtSignatures", () => {

506506

]);

507507

});

508508

it("handles empty array", () => {

509-

expect(stripThoughtSignatures([])).toEqual([]);

509+

expect(stripThoughtSignatures([])).toStrictEqual([]);

510510

});

511511

it("handles null/undefined blocks in array", () => {

512512

const input = [null, undefined, { type: "text", text: "hello" }];

@@ -638,7 +638,7 @@ describe("downgradeOpenAIReasoningBlocks", () => {

638638

},

639639

];

640640
641-

expect(downgradeOpenAIReasoningBlocks(input as any)).toEqual([]);

641+

expect(downgradeOpenAIReasoningBlocks(input as any)).toStrictEqual([]);

642642

});

643643
644644

it("keeps non-reasoning thinking signatures", () => {

Original file line numberDiff line numberDiff line change

@@ -940,7 +940,7 @@ describe("sanitizeSessionHistory", () => {

940940

allowedToolNames: ["read"],

941941

});

942942
943-

expect(result).toEqual([]);

943+

expect(result).toStrictEqual([]);

944944

});

945945
946946

it("downgrades orphaned openai reasoning even when the model has not changed", async () => {

@@ -961,7 +961,7 @@ describe("sanitizeSessionHistory", () => {

961961

sessionManager,

962962

});

963963
964-

expect(result).toEqual([]);

964+

expect(result).toStrictEqual([]);

965965

});

966966
967967

it("downgrades orphaned openai reasoning when the model changes too", async () => {