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

推荐订阅源

J
Java Code Geeks
腾讯CDC
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
L
LangChain Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
P
Proofpoint News Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
IT之家
IT之家
A
About on SuperTechFans
H
Help Net Security

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
fix(test): route mac helper script owners · openclaw/open...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

956956

"scripts/github/run-openclaw-cross-os-release-checks.sh",

957957

["test/scripts/openclaw-cross-os-release-workflow.test.ts"],

958958

],

959+

["scripts/lib/restart-mac-gateway.sh", ["test/scripts/restart-mac.test.ts"]],

959960

[

960961

"scripts/github/security-sensitive-guard.mjs",

961962

[

@@ -3109,11 +3110,15 @@ function resolveParallelsToolingTestTargets(changedPath) {

31093110

if (

31103111

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

31113112

!/^scripts\/e2e\/parallels-(?:linux|macos|npm-update|windows)-smoke\.sh$/u.test(changedPath) &&

3112-

!/^scripts\/e2e\/lib\/parallels-package\/build-info-commit\.mjs$/u.test(changedPath)

3113+

!/^scripts\/e2e\/lib\/parallels-package\/build-info-commit\.mjs$/u.test(changedPath) &&

3114+

!/^scripts\/e2e\/lib\/parallels-(?:macos|package)-common\.sh$/u.test(changedPath)

31133115

) {

31143116

return null;

31153117

}

3116-

if (/^scripts\/e2e\/lib\/parallels-package\/build-info-commit\.mjs$/u.test(changedPath)) {

3118+

if (

3119+

/^scripts\/e2e\/lib\/parallels-package\/build-info-commit\.mjs$/u.test(changedPath) ||

3120+

/^scripts\/e2e\/lib\/parallels-(?:macos|package)-common\.sh$/u.test(changedPath)

3121+

) {

31173122

return ["test/scripts/parallels-lib-helpers.test.ts"];

31183123

}

31193124

const targets = ["test/scripts/parallels-smoke-model.test.ts"];

Original file line numberDiff line numberDiff line change

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

22992299

"scripts/e2e/parallels/windows-smoke.ts",

23002300

"scripts/e2e/parallels-windows-smoke.sh",

23012301

"scripts/e2e/lib/parallels-package/build-info-commit.mjs",

2302+

"scripts/e2e/lib/parallels-macos-common.sh",

2303+

"scripts/e2e/lib/parallels-package-common.sh",

23022304

]),

23032305

).toEqual([

23042306

{

@@ -2315,6 +2317,25 @@ describe("scripts/test-projects changed-target routing", () => {

23152317

]);

23162318

});

23172319
2320+

it("routes mac restart helpers through restart-mac owner tests", () => {

2321+

expect(resolveChangedTestTargetPlan(["scripts/lib/restart-mac-gateway.sh"])).toEqual({

2322+

mode: "targets",

2323+

targets: ["test/scripts/restart-mac.test.ts"],

2324+

});

2325+

});

2326+
2327+

it("routes Parallels common shell helpers through lib helper owner tests", () => {

2328+

for (const changedPath of [

2329+

"scripts/e2e/lib/parallels-macos-common.sh",

2330+

"scripts/e2e/lib/parallels-package-common.sh",

2331+

]) {

2332+

expect(resolveChangedTestTargetPlan([changedPath]), changedPath).toEqual({

2333+

mode: "targets",

2334+

targets: ["test/scripts/parallels-lib-helpers.test.ts"],

2335+

});

2336+

}

2337+

});

2338+
23182339

it("routes MCP Docker E2E script targets instead of skipping changed tests", () => {

23192340

const targets = [

23202341

"scripts/e2e/mcp-channels-docker.sh",