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

推荐订阅源

Jina AI
Jina AI
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
J
Java Code Geeks
博客园 - 聂微东
B
Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
腾讯CDC
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Azure Blog
Microsoft Azure Blog
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
美团技术团队
博客园 - Franky
Google DeepMind News
Google DeepMind News
V
V2EX
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
The Cloudflare 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(scripts): route script fixture metadata · openclaw/o...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -450,6 +450,7 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

450450

".github/workflows/openclaw-release-checks.yml",

451451

["test/scripts/package-acceptance-workflow.test.ts"],

452452

],

453+

["scripts/clawtributors-map.json", ["test/scripts/update-clawtributors.test.ts"]],

453454

["scripts/build-all.mjs", ["test/scripts/build-all.test.ts"]],

454455

["scripts/build-stamp.mjs", ["src/infra/build-stamp.test.ts"]],

455456

["scripts/crabbox-wrapper.mjs", ["test/scripts/crabbox-wrapper.test.ts"]],

@@ -2661,6 +2662,13 @@ function isToolingScriptPath(changedPath) {

26612662

return TOOLING_SCRIPT_PATH_PATTERN.test(changedPath);

26622663

}

26632664
2665+

function resolveUpgradeSurvivorConfigRecipeTargets(changedPath) {

2666+

if (!/^scripts\/e2e\/lib\/upgrade-survivor\/config-recipe\/[^/]+\.json$/u.test(changedPath)) {

2667+

return null;

2668+

}

2669+

return ["test/scripts/upgrade-survivor-config-recipe.test.ts"];

2670+

}

2671+
26642672

function resolveParallelsToolingTestTargets(changedPath) {

26652673

if (

26662674

!/^scripts\/e2e\/parallels\/[^/]+\.ts$/u.test(changedPath) &&

@@ -2689,6 +2697,7 @@ function resolveToolingTestTargets(changedPath, cwd = process.cwd()) {

26892697

const explicitTargets =

26902698

TOOLING_SOURCE_TEST_TARGETS.get(changedPath) ??

26912699

TOOLING_TEST_TARGETS.get(changedPath) ??

2700+

resolveUpgradeSurvivorConfigRecipeTargets(changedPath) ??

26922701

resolveParallelsToolingTestTargets(changedPath);

26932702

const conventionalTargets = resolveConventionalToolingTestTargets(changedPath, cwd);

26942703

if (explicitTargets && conventionalTargets) {

Original file line numberDiff line numberDiff line change

@@ -430,6 +430,10 @@ describe("scripts/test-projects changed-target routing", () => {

430430

"scripts/e2e/lib/upgrade-survivor/run.sh",

431431

["test/scripts/upgrade-survivor-assertions.test.ts"],

432432

],

433+

[

434+

"scripts/e2e/lib/upgrade-survivor/config-recipe/plugins-configured-installs.json",

435+

["test/scripts/upgrade-survivor-config-recipe.test.ts"],

436+

],

433437

["scripts/e2e/lib/run-with-pty.mjs", ["test/scripts/e2e-run-with-pty.test.ts"]],

434438

]);

435439

@@ -1210,6 +1214,11 @@ describe("scripts/test-projects changed-target routing", () => {

12101214

targets: ["test/scripts/dependency-ownership-surface-report.test.ts"],

12111215

});

12121216
1217+

expect(resolveChangedTestTargetPlan(["scripts/clawtributors-map.json"])).toEqual({

1218+

mode: "targets",

1219+

targets: ["test/scripts/update-clawtributors.test.ts"],

1220+

});

1221+
12131222

expect(resolveChangedTestTargetPlan(["scripts/docs-link-audit.mjs"])).toEqual({

12141223

mode: "targets",

12151224

targets: ["src/scripts/docs-link-audit.test.ts"],