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

推荐订阅源

Recent Announcements
Recent Announcements
博客园 - Franky
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
博客园 - 【当耐特】
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
爱范儿
爱范儿
罗磊的独立博客
博客园_首页
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
V
Visual Studio Blog
T
Tailwind CSS 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: route more command tests through light suite · open...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -2,10 +2,12 @@ const normalizeRepoPath = (value) => value.replaceAll("\\", "/");

2233

const commandsLightEntries = [

44

{ source: "src/commands/cleanup-utils.ts", test: "src/commands/cleanup-utils.test.ts" },

5+

{ test: "src/commands/auth-choice.test.ts" },

56

{

67

source: "src/commands/dashboard.links.ts",

78

test: "src/commands/dashboard.links.test.ts",

89

},

10+

{ test: "src/commands/daemon-install-helpers.test.ts" },

911

{ source: "src/commands/doctor-browser.ts", test: "src/commands/doctor-browser.test.ts" },

1012

{

1113

source: "src/commands/doctor-gateway-auth-token.ts",

@@ -39,10 +41,9 @@ const commandsLightEntries = [

3941

source: "src/commands/gateway-status/helpers.ts",

4042

test: "src/commands/gateway-status/helpers.test.ts",

4143

},

42-

{

43-

source: "src/commands/models/auth.ts",

44-

test: "src/commands/models/auth.test.ts",

45-

},

44+

{ test: "src/commands/models/auth.test.ts" },

45+

{ test: "src/commands/models/list.auth-index.test.ts" },

46+

{ test: "src/commands/models/list.list-command.forward-compat.test.ts" },

4647

{

4748

source: "src/commands/models/list.status-command.ts",

4849

test: "src/commands/models/list.status.test.ts",

@@ -79,13 +80,19 @@ const commandsLightEntries = [

7980

];

80818182

const commandsLightIncludePatternByFile = new Map(

82-

commandsLightEntries.flatMap(({ source, test }) => [

83-

[source, test],

84-

[test, test],

85-

]),

83+

commandsLightEntries.flatMap(({ source, test }) =>

84+

source

85+

? [

86+

[source, test],

87+

[test, test],

88+

]

89+

: [[test, test]],

90+

),

8691

);

879288-

export const commandsLightSourceFiles = commandsLightEntries.map(({ source }) => source);

93+

export const commandsLightSourceFiles = commandsLightEntries.flatMap(({ source }) =>

94+

source ? [source] : [],

95+

);

8996

export const commandsLightTestFiles = commandsLightEntries.map(({ test }) => test);

90979198

export function isCommandsLightTarget(file) {