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

推荐订阅源

V
V2EX
J
Java Code Geeks
月光博客
月光博客
博客园_首页
The GitHub Blog
The GitHub Blog
Vercel News
Vercel News
B
Blog RSS Feed
博客园 - 聂微东
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
Google DeepMind News
Google DeepMind News
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
量子位
Martin Fowler
Martin Fowler
博客园 - 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: speed up slow CI regressions · openclaw/openclaw@30...
steipete · 2026-05-26 · via Recent Commits to openclaw:main

@@ -8,8 +8,10 @@ import {

88

resolveCommandsLightIncludePattern,

99

} from "../test/vitest/vitest.commands-light-paths.mjs";

1010

import { isAcpxExtensionRoot } from "../test/vitest/vitest.extension-acpx-paths.mjs";

11+

import { isActiveMemoryExtensionRoot } from "../test/vitest/vitest.extension-active-memory-paths.mjs";

1112

import { isBrowserExtensionRoot } from "../test/vitest/vitest.extension-browser-paths.mjs";

1213

import { resolveSplitChannelExtensionShard } from "../test/vitest/vitest.extension-channel-split-paths.mjs";

14+

import { isCodexExtensionRoot } from "../test/vitest/vitest.extension-codex-paths.mjs";

1315

import { isDiffsExtensionRoot } from "../test/vitest/vitest.extension-diffs-paths.mjs";

1416

import { isFeishuExtensionRoot } from "../test/vitest/vitest.extension-feishu-paths.mjs";

1517

import { isIrcExtensionRoot } from "../test/vitest/vitest.extension-irc-paths.mjs";

@@ -76,8 +78,11 @@ const CONTRACTS_PLUGIN_VITEST_CONFIG = "test/vitest/vitest.contracts-plugin.conf

7678

const CRON_VITEST_CONFIG = "test/vitest/vitest.cron.config.ts";

7779

const DAEMON_VITEST_CONFIG = "test/vitest/vitest.daemon.config.ts";

7880

const E2E_VITEST_CONFIG = "test/vitest/vitest.e2e.config.ts";

81+

const EXTENSION_ACTIVE_MEMORY_VITEST_CONFIG =

82+

"test/vitest/vitest.extension-active-memory.config.ts";

7983

const EXTENSION_ACPX_VITEST_CONFIG = "test/vitest/vitest.extension-acpx.config.ts";

8084

const EXTENSION_BROWSER_VITEST_CONFIG = "test/vitest/vitest.extension-browser.config.ts";

85+

const EXTENSION_CODEX_VITEST_CONFIG = "test/vitest/vitest.extension-codex.config.ts";

8186

const EXTENSION_CHANNELS_VITEST_CONFIG = "test/vitest/vitest.extension-channels.config.ts";

8287

const EXTENSION_DIFFS_VITEST_CONFIG = "test/vitest/vitest.extension-diffs.config.ts";

8388

const EXTENSION_DISCORD_VITEST_CONFIG = "test/vitest/vitest.extension-discord.config.ts";

@@ -134,6 +139,7 @@ const FULL_SUITE_CONFIG_WEIGHT = new Map([

134139

[AGENTS_PI_EMBEDDED_VITEST_CONFIG, 169],

135140

[AGENTS_SUPPORT_VITEST_CONFIG, 168],

136141

[AGENTS_TOOLS_VITEST_CONFIG, 167],

142+

[EXTENSION_CODEX_VITEST_CONFIG, 168],

137143

[EXTENSION_VOICE_CALL_VITEST_CONFIG, 169],

138144

[EXTENSIONS_VITEST_CONFIG, 168],

139145

[EXTENSION_PROVIDER_OPENAI_VITEST_CONFIG, 167],

@@ -183,6 +189,7 @@ const FULL_SUITE_CONFIG_WEIGHT = new Map([

183189

[EXTENSION_SIGNAL_VITEST_CONFIG, 11],

184190

[EXTENSION_ACPX_VITEST_CONFIG, 10],

185191

[EXTENSION_DIFFS_VITEST_CONFIG, 8],

192+

[EXTENSION_ACTIVE_MEMORY_VITEST_CONFIG, 7],

186193

[EXTENSION_MEMORY_VITEST_CONFIG, 6],

187194

[EXTENSION_MSTEAMS_VITEST_CONFIG, 4],

188195

]);

@@ -264,9 +271,11 @@ const VITEST_CONFIG_BY_KIND = {

264271

e2e: E2E_VITEST_CONFIG,

265272

extension: EXTENSIONS_VITEST_CONFIG,

266273

extensionFull: FULL_EXTENSIONS_VITEST_CONFIG,

274+

extensionActiveMemory: EXTENSION_ACTIVE_MEMORY_VITEST_CONFIG,

267275

extensionAcpx: EXTENSION_ACPX_VITEST_CONFIG,

268276

extensionBrowser: EXTENSION_BROWSER_VITEST_CONFIG,

269277

extensionChannel: EXTENSION_CHANNELS_VITEST_CONFIG,

278+

extensionCodex: EXTENSION_CODEX_VITEST_CONFIG,

270279

extensionDiffs: EXTENSION_DIFFS_VITEST_CONFIG,

271280

extensionDiscord: EXTENSION_DISCORD_VITEST_CONFIG,

272281

extensionFeishu: EXTENSION_FEISHU_VITEST_CONFIG,

@@ -564,7 +573,14 @@ const GENERATED_CHANGED_TEST_TARGET_PATTERNS = [

564573

/^extensions\/[^/]+\/src\/host\/.+\/\.bundle\.hash$/u,

565574

/^extensions\/[^/]+\/src\/host\/.+\/[^/]+\.bundle\.js$/u,

566575

];

567-

const SOURCE_ROOTS_FOR_IMPORT_GRAPH = ["src", "extensions", "packages", "ui/src", "ui/config", "test"];

576+

const SOURCE_ROOTS_FOR_IMPORT_GRAPH = [

577+

"src",

578+

"extensions",

579+

"packages",

580+

"ui/src",

581+

"ui/config",

582+

"test",

583+

];

568584

const IMPORTABLE_FILE_EXTENSIONS = [".ts", ".tsx", ".mts", ".cts"];

569585

const IMPORT_SPECIFIER_PATTERN =

570586

/\b(?:import|export)\s+(?:type\s+)?(?:[^'"]*?\s+from\s+)?["']([^"']+)["']|\bimport\s*\(\s*["']([^"']+)["']\s*\)/gu;

@@ -1407,6 +1423,12 @@ function classifyTarget(arg, cwd) {

14071423

if (isAcpxExtensionRoot(extensionRoot)) {

14081424

return "extensionAcpx";

14091425

}

1426+

if (isActiveMemoryExtensionRoot(extensionRoot)) {

1427+

return "extensionActiveMemory";

1428+

}

1429+

if (isCodexExtensionRoot(extensionRoot)) {

1430+

return "extensionCodex";

1431+

}

14101432

if (isDiffsExtensionRoot(extensionRoot)) {

14111433

return "extensionDiffs";

14121434

}