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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Help Net Security
云风的 BLOG
云风的 BLOG
Apple Machine Learning Research
Apple Machine Learning Research
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
D
Docker
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
博客园 - Franky
B
Blog RSS Feed
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
量子位
V
Visual Studio Blog
Y
Y Combinator Blog
小众软件
小众软件
N
Netflix TechBlog - Medium
博客园 - 三生石上(FineUI控件)
Microsoft Security Blog
Microsoft Security 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 provider empty payload assertions · opencla...
shakkernerd · 2026-05-09 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -33,7 +33,7 @@ describe("Codex prompt overlay runtime contract", () => {

3333

);

3434
3535

expect(contribution?.stablePrefix).toContain("<persona_latch>");

36-

expect(contribution?.sectionOverrides).toEqual({});

36+

expect(contribution?.sectionOverrides).toStrictEqual({});

3737

});

3838
3939

it("does not add the shared GPT-5 overlay to non-GPT-5 Codex provider runs", () => {

Original file line numberDiff line numberDiff line change

@@ -56,7 +56,7 @@ describe("ollama provider policy public artifact", () => {

5656

provider: "openai",

5757

providerConfig: {},

5858

}),

59-

).toEqual({});

59+

).toStrictEqual({});

6060

});

6161
6262

it("exposes max thinking for reasoning-capable models without full plugin activation", () => {

Original file line numberDiff line numberDiff line change

@@ -72,6 +72,6 @@ describe("resolveCodexAuthIdentity", () => {

7272

});

7373
7474

it("returns no metadata when token parsing yields no identity", () => {

75-

expect(resolveCodexAuthIdentity({ accessToken: "not-a-jwt-token" })).toEqual({});

75+

expect(resolveCodexAuthIdentity({ accessToken: "not-a-jwt-token" })).toStrictEqual({});

7676

});

7777

});

Original file line numberDiff line numberDiff line change

@@ -268,7 +268,7 @@ describe("openrouter provider hooks", () => {

268268

} as never,

269269

);

270270
271-

expect(capturedPayload).toEqual({});

271+

expect(capturedPayload).toStrictEqual({});

272272

expect(baseStreamFn).toHaveBeenCalledOnce();

273273

});

274274
Original file line numberDiff line numberDiff line change

@@ -57,8 +57,8 @@ describe("createQwenThinkingWrapper", () => {

5757

});

5858
5959

it("skips non-reasoning and non-completions models", () => {

60-

expect(capturePayload({ model: { reasoning: false } })).toEqual({});

61-

expect(capturePayload({ model: { api: "openai-responses" as never } })).toEqual({});

60+

expect(capturePayload({ model: { reasoning: false } })).toStrictEqual({});

61+

expect(capturePayload({ model: { api: "openai-responses" as never } })).toStrictEqual({});

6262

});

6363

});

6464
Original file line numberDiff line numberDiff line change

@@ -102,10 +102,12 @@ describe("createVllmQwenThinkingWrapper", () => {

102102

});

103103
104104

it("skips non-reasoning and non-completions models", () => {

105-

expect(capturePayload({ format: "chat-template", model: { reasoning: false } })).toEqual({});

105+

expect(capturePayload({ format: "chat-template", model: { reasoning: false } })).toStrictEqual(

106+

{},

107+

);

106108

expect(

107109

capturePayload({ format: "chat-template", model: { api: "openai-responses" as never } }),

108-

).toEqual({});

110+

).toStrictEqual({});

109111

});

110112

});

111113

@@ -152,7 +154,7 @@ describe("createVllmProviderThinkingWrapper", () => {

152154

});

153155
154156

it("does not inject Nemotron 3 chat-template kwargs when thinking is enabled", () => {

155-

expect(captureProviderPayload({ thinkingLevel: "low" })).toEqual({});

157+

expect(captureProviderPayload({ thinkingLevel: "low" })).toStrictEqual({});

156158

});

157159
158160

it("preserves existing Nemotron 3 chat-template kwargs over defaults", () => {

@@ -179,7 +181,7 @@ describe("createVllmProviderThinkingWrapper", () => {

179181

thinkingLevel: "off",

180182

model: { id: "Qwen/Qwen3-8B" },

181183

}),

182-

).toEqual({});

184+

).toStrictEqual({});

183185

});

184186

});

185187
Original file line numberDiff line numberDiff line change

@@ -7,8 +7,8 @@ import {

77
88

describe("xai tool config helpers", () => {

99

it("coerces non-record config to an empty object", () => {

10-

expect(coerceXaiToolConfig(undefined)).toEqual({});

11-

expect(coerceXaiToolConfig([] as unknown as Record<string, unknown>)).toEqual({});

10+

expect(coerceXaiToolConfig(undefined)).toStrictEqual({});

11+

expect(coerceXaiToolConfig([] as unknown as Record<string, unknown>)).toStrictEqual({});

1212

});

1313
1414

it("normalizes configured model ids and falls back to the default model", () => {

Original file line numberDiff line numberDiff line change

@@ -153,7 +153,7 @@ describe("createAllowlistSetupWizardProxy", () => {

153153
154154

expect(

155155

await promptSetupWizardAllowFrom({ promptAllowFrom: wizard.dmPolicy?.promptAllowFrom }),

156-

).toEqual({});

156+

).toStrictEqual({});

157157

expect(

158158

await resolveSetupWizardAllowFromEntries({

159159

resolveEntries: wizard.allowFrom?.resolveEntries,