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

推荐订阅源

Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
V
V2EX
量子位
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 【当耐特】
爱范儿
爱范儿
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
小众软件
小众软件
IT之家
IT之家
博客园_首页
博客园 - 聂微东
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗

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
ci: parallelize core test configs · openclaw/openclaw@885...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -46,7 +46,10 @@ import { resolveVitestCliEntry, resolveVitestNodeArgs } from "./run-vitest.mjs";

4646

const DEFAULT_VITEST_CONFIG = "test/vitest/vitest.unit.config.ts";

4747

const AGENTS_VITEST_CONFIG = "test/vitest/vitest.agents.config.ts";

4848

const ACP_VITEST_CONFIG = "test/vitest/vitest.acp.config.ts";

49+

const AUTO_REPLY_CORE_VITEST_CONFIG = "test/vitest/vitest.auto-reply-core.config.ts";

4950

const AUTO_REPLY_VITEST_CONFIG = "test/vitest/vitest.auto-reply.config.ts";

51+

const AUTO_REPLY_REPLY_VITEST_CONFIG = "test/vitest/vitest.auto-reply-reply.config.ts";

52+

const AUTO_REPLY_TOP_LEVEL_VITEST_CONFIG = "test/vitest/vitest.auto-reply-top-level.config.ts";

5053

const BOUNDARY_VITEST_CONFIG = "test/vitest/vitest.boundary.config.ts";

5154

const BUNDLED_VITEST_CONFIG = "test/vitest/vitest.bundled.config.ts";

5255

const CHANNEL_VITEST_CONFIG = "test/vitest/vitest.channels.config.ts";

@@ -93,6 +96,10 @@ const EXTENSION_WHATSAPP_VITEST_CONFIG = "test/vitest/vitest.extension-whatsapp.

9396

const EXTENSION_ZALO_VITEST_CONFIG = "test/vitest/vitest.extension-zalo.config.ts";

9497

const EXTENSIONS_VITEST_CONFIG = "test/vitest/vitest.extensions.config.ts";

9598

const FULL_EXTENSIONS_VITEST_CONFIG = "test/vitest/vitest.full-extensions.config.ts";

99+

const GATEWAY_CLIENT_VITEST_CONFIG = "test/vitest/vitest.gateway-client.config.ts";

100+

const GATEWAY_CORE_VITEST_CONFIG = "test/vitest/vitest.gateway-core.config.ts";

101+

const GATEWAY_METHODS_VITEST_CONFIG = "test/vitest/vitest.gateway-methods.config.ts";

102+

const GATEWAY_SERVER_VITEST_CONFIG = "test/vitest/vitest.gateway-server.config.ts";

96103

const GATEWAY_VITEST_CONFIG = "test/vitest/vitest.gateway.config.ts";

97104

const HOOKS_VITEST_CONFIG = "test/vitest/vitest.hooks.config.ts";

98105

const INFRA_VITEST_CONFIG = "test/vitest/vitest.infra.config.ts";

@@ -103,6 +110,10 @@ const PLUGIN_SDK_LIGHT_VITEST_CONFIG = "test/vitest/vitest.plugin-sdk-light.conf

103110

const PLUGIN_SDK_VITEST_CONFIG = "test/vitest/vitest.plugin-sdk.config.ts";

104111

const PLUGINS_VITEST_CONFIG = "test/vitest/vitest.plugins.config.ts";

105112

const UNIT_FAST_VITEST_CONFIG = "test/vitest/vitest.unit-fast.config.ts";

113+

const UNIT_SECURITY_VITEST_CONFIG = "test/vitest/vitest.unit-security.config.ts";

114+

const UNIT_SRC_VITEST_CONFIG = "test/vitest/vitest.unit-src.config.ts";

115+

const UNIT_SUPPORT_VITEST_CONFIG = "test/vitest/vitest.unit-support.config.ts";

116+

const UNIT_UI_VITEST_CONFIG = "test/vitest/vitest.unit-ui.config.ts";

106117

const PROCESS_VITEST_CONFIG = "test/vitest/vitest.process.config.ts";

107118

const RUNTIME_CONFIG_VITEST_CONFIG = "test/vitest/vitest.runtime-config.config.ts";

108119

const SECRETS_VITEST_CONFIG = "test/vitest/vitest.secrets.config.ts";

@@ -119,6 +130,9 @@ const CHANGED_ARGS_PATTERN = /^--changed(?:=(.+))?$/u;

119130

const VITEST_CONFIG_BY_KIND = {

120131

acp: ACP_VITEST_CONFIG,

121132

agent: AGENTS_VITEST_CONFIG,

133+

autoReplyCore: AUTO_REPLY_CORE_VITEST_CONFIG,

134+

autoReplyReply: AUTO_REPLY_REPLY_VITEST_CONFIG,

135+

autoReplyTopLevel: AUTO_REPLY_TOP_LEVEL_VITEST_CONFIG,

122136

autoReply: AUTO_REPLY_VITEST_CONFIG,

123137

boundary: BOUNDARY_VITEST_CONFIG,

124138

bundled: BUNDLED_VITEST_CONFIG,

@@ -161,6 +175,10 @@ const VITEST_CONFIG_BY_KIND = {

161175

extensionVoiceCall: EXTENSION_VOICE_CALL_VITEST_CONFIG,

162176

extensionWhatsApp: EXTENSION_WHATSAPP_VITEST_CONFIG,

163177

extensionZalo: EXTENSION_ZALO_VITEST_CONFIG,

178+

gatewayClient: GATEWAY_CLIENT_VITEST_CONFIG,

179+

gatewayCore: GATEWAY_CORE_VITEST_CONFIG,

180+

gatewayMethods: GATEWAY_METHODS_VITEST_CONFIG,

181+

gatewayServer: GATEWAY_SERVER_VITEST_CONFIG,

164182

gateway: GATEWAY_VITEST_CONFIG,

165183

hooks: HOOKS_VITEST_CONFIG,

166184

infra: INFRA_VITEST_CONFIG,

@@ -172,6 +190,10 @@ const VITEST_CONFIG_BY_KIND = {

172190

pluginSdkLight: PLUGIN_SDK_LIGHT_VITEST_CONFIG,

173191

process: PROCESS_VITEST_CONFIG,

174192

unitFast: UNIT_FAST_VITEST_CONFIG,

193+

unitSecurity: UNIT_SECURITY_VITEST_CONFIG,

194+

unitSrc: UNIT_SRC_VITEST_CONFIG,

195+

unitSupport: UNIT_SUPPORT_VITEST_CONFIG,

196+

unitUi: UNIT_UI_VITEST_CONFIG,

175197

runtimeConfig: RUNTIME_CONFIG_VITEST_CONFIG,

176198

secrets: SECRETS_VITEST_CONFIG,

177199

sharedCore: SHARED_CORE_VITEST_CONFIG,

@@ -814,6 +836,10 @@ export function buildVitestRunPlans(

814836

"contractsPlugin",

815837

"bundled",

816838

"gateway",

839+

"gatewayCore",

840+

"gatewayClient",

841+

"gatewayMethods",

842+

"gatewayServer",

817843

"hooks",

818844

"infra",

819845

"runtimeConfig",

@@ -834,9 +860,16 @@ export function buildVitestRunPlans(

834860

"commandLight",

835861

"command",

836862

"autoReply",

863+

"autoReplyCore",

864+

"autoReplyReply",

865+

"autoReplyTopLevel",

837866

"agent",

838867

"plugin",

839868

"ui",

869+

"unitSrc",

870+

"unitSecurity",

871+

"unitSupport",

872+

"unitUi",

840873

"utils",

841874

"wizard",

842875

"e2e",