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

推荐订阅源

WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
DataBreaches.Net
GbyAI
GbyAI
Microsoft Security Blog
Microsoft Security Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Engineering at Meta
Engineering at Meta
IT之家
IT之家
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
月光博客
月光博客
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
腾讯CDC
B
Blog RSS Feed
博客园 - Franky
爱范儿
爱范儿

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: avoid core utility filter allocation assertions · o...
steipete · 2026-05-09 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -2024,8 +2024,8 @@ describe("doctor config flow", () => {

20242024

.filter((call) => call[1] === "Doctor warnings" || call[1] === "Doctor changes")

20252025

.map((call) => call[0]);

20262026

const joinedOutputs = outputs.join("\n");

2027-

expect(outputs.filter((line) => line.includes("\u001b"))).toEqual([]);

2028-

expect(outputs.filter((line) => line.includes("\nforged"))).toEqual([]);

2027+

expect(outputs.some((line) => line.includes("\u001b"))).toBe(false);

2028+

expect(outputs.some((line) => line.includes("\nforged"))).toBe(false);

20292029

expect(joinedOutputs).toContain('channels.slack.accounts.opsopen.allowFrom: set to ["*"]');

20302030

expect(joinedOutputs).toContain('required by dmPolicy="open"');

20312031

expect(

Original file line numberDiff line numberDiff line change

@@ -158,7 +158,7 @@ describe("session-compaction-checkpoints", () => {

158158

expect(snapshot).toBeNull();

159159

expect(copyFileSyncSpy).not.toHaveBeenCalled();

160160

expect(MAX_COMPACTION_CHECKPOINT_SNAPSHOT_BYTES).toBeGreaterThan(64);

161-

expect(fsSync.readdirSync(dir).filter((file) => file.includes(".checkpoint."))).toEqual([]);

161+

expect(fsSync.readdirSync(dir).some((file) => file.includes(".checkpoint."))).toBe(false);

162162

} finally {

163163

copyFileSyncSpy.mockRestore();

164164

}

Original file line numberDiff line numberDiff line change

@@ -41,7 +41,7 @@ async function expectMissingScopeWithoutFallback(mockFetch: ScopeFallbackFetch)

4141

expectMissingScopeError(result);

4242

const calledUrls = mockFetch.mock.calls.map(([input]) => toRequestUrl(input));

4343

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

44-

expect(calledUrls.filter((url) => !url.includes("/api/oauth/usage"))).toEqual([]);

44+

expect(calledUrls.every((url) => url.includes("/api/oauth/usage"))).toBe(true);

4545

}

4646
4747

function makeOrgAResponse() {

Original file line numberDiff line numberDiff line change

@@ -156,7 +156,7 @@ describe("wave-15 jsonc byte-fidelity", () => {

156156

const root = assertParseable(raw);

157157

if (root.kind === "array") {

158158

expect(root.items).toHaveLength(7);

159-

expect(root.items.filter((item) => item.kind !== "number")).toEqual([]);

159+

expect(root.items.every((item) => item.kind === "number")).toBe(true);

160160

}

161161

});

162162