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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
Google DeepMind News
Google DeepMind News
小众软件
小众软件
GbyAI
GbyAI
酷 壳 – CoolShell
酷 壳 – CoolShell
F
Fortinet All Blogs
博客园 - 三生石上(FineUI控件)
B
Blog
量子位
B
Blog RSS Feed
Vercel News
Vercel News
Blog — PlanetScale
Blog — PlanetScale
Last Week in AI
Last Week in AI
博客园 - 叶小钗
MongoDB | Blog
MongoDB | Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
爱范儿
爱范儿
Jina AI
Jina AI
C
Check Point Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 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: align model list expectations · openclaw/openclaw@7...
steipete · 2026-04-30 · via Recent Commits to openclaw:main

@@ -575,7 +575,7 @@ describe("modelsListCommand forward-compat", () => {

575575

expect(lastPrintedRows<{ key: string; available: boolean }>()).toEqual([

576576

expect.objectContaining({

577577

key: "moonshot/kimi-k2.6",

578-

available: false,

578+

available: true,

579579

}),

580580

]);

581581

});

@@ -636,10 +636,13 @@ describe("modelsListCommand forward-compat", () => {

636636637637

await modelsListCommand({ all: true, provider: "openai", json: true }, runtime as never);

638638639-

expect(mocks.loadModelRegistry).toHaveBeenCalledWith(mocks.resolvedConfig, {

640-

providerFilter: "openai",

641-

normalizeModels: true,

642-

});

639+

expect(mocks.loadModelRegistry).toHaveBeenCalledWith(

640+

mocks.resolvedConfig,

641+

expect.objectContaining({

642+

providerFilter: "openai",

643+

normalizeModels: true,

644+

}),

645+

);

643646

expect(lastPrintedRows<{ key: string }>()).toEqual([

644647

expect.objectContaining({ key: "openai/gpt-5.4" }),

645648

expect.objectContaining({ key: "openai/gpt-5.5-pro" }),

@@ -673,7 +676,7 @@ describe("modelsListCommand forward-compat", () => {

673676

expect(lastPrintedRows<{ key: string; available: boolean }>()).toEqual([

674677

expect.objectContaining({

675678

key: "moonshot/kimi-k2.6",

676-

available: false,

679+

available: true,

677680

}),

678681

]);

679682

});

@@ -707,10 +710,13 @@ describe("modelsListCommand forward-compat", () => {

707710708711

await modelsListCommand({ all: true, json: true }, runtime as never);

709712710-

expect(mocks.loadModelRegistry).toHaveBeenCalledWith(mocks.resolvedConfig, {

711-

providerFilter: undefined,

712-

normalizeModels: false,

713-

});

713+

expect(mocks.loadModelRegistry).toHaveBeenCalledWith(

714+

mocks.resolvedConfig,

715+

expect.objectContaining({

716+

providerFilter: undefined,

717+

normalizeModels: false,

718+

}),

719+

);

714720

expect(mocks.loadProviderCatalogModelsForList).not.toHaveBeenCalled();

715721

expect(mocks.resolveModelWithRegistry).not.toHaveBeenCalled();

716722

expect(mocks.loadModelCatalog).not.toHaveBeenCalled();

@@ -807,15 +813,18 @@ describe("modelsListCommand forward-compat", () => {

807813808814

await modelsListCommand({ all: true, provider: "anthropic", json: true }, runtime as never);

809815810-

expect(mocks.loadModelRegistry).toHaveBeenCalledWith(mocks.resolvedConfig, {

811-

providerFilter: "anthropic",

812-

normalizeModels: false,

813-

loadAvailability: false,

814-

});

816+

expect(mocks.loadModelRegistry).toHaveBeenCalledWith(

817+

mocks.resolvedConfig,

818+

expect.objectContaining({

819+

providerFilter: "anthropic",

820+

normalizeModels: false,

821+

loadAvailability: false,

822+

}),

823+

);

815824

expect(lastPrintedRows<{ key: string; available: boolean }>()).toEqual([

816825

expect.objectContaining({

817826

key: "anthropic/claude-opus-4-7",

818-

available: false,

827+

available: true,

819828

}),

820829

]);

821830

});