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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
爱范儿
爱范儿
The Cloudflare Blog
Y
Y Combinator Blog
B
Blog RSS Feed
Stack Overflow Blog
Stack Overflow Blog
博客园 - 叶小钗
G
Google Developers Blog
J
Java Code Geeks
P
Proofpoint News Feed
美团技术团队
Engineering at Meta
Engineering at Meta
腾讯CDC
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
WordPress大学
WordPress大学
博客园 - 聂微东
雷峰网
雷峰网
有赞技术团队
有赞技术团队
L
LangChain Blog
N
Netflix TechBlog - Medium
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 【当耐特】

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: tighten command palette assertions · openclaw/openc...
shakkernerd · 2026-05-08 · via Recent Commits to openclaw:main

@@ -141,31 +141,27 @@ describe("command palette", () => {

141141

await renderPalette({ query: "overview", activeIndex: 0 });

142142143143

const dialog = container.querySelector<HTMLDialogElement>("dialog.cmd-palette-overlay");

144-

expect(dialog).not.toBeNull();

145-

expect(dialog!.open).toBe(true);

146-

expect(dialog!.hasAttribute("role")).toBe(false);

147-

expect(dialog!.hasAttribute("aria-modal")).toBe(false);

148-

expect(dialog!.getAttribute("aria-labelledby")).toBe("cmd-palette-label");

144+

expect(dialog?.open).toBe(true);

145+

expect(dialog?.hasAttribute("role")).toBe(false);

146+

expect(dialog?.hasAttribute("aria-modal")).toBe(false);

147+

expect(dialog?.getAttribute("aria-labelledby")).toBe("cmd-palette-label");

149148150149

const label = container.querySelector<HTMLLabelElement>("#cmd-palette-label");

151150

const input = container.querySelector<HTMLInputElement>("#cmd-palette-input");

152151

const listbox = container.querySelector<HTMLElement>("#cmd-palette-listbox");

153152

expect(label?.textContent).toBe("Type a command…");

154153

expect(label?.getAttribute("for")).toBe("cmd-palette-input");

155-

expect(input).not.toBeNull();

156-

expect(input!.getAttribute("role")).toBe("combobox");

157-

expect(input!.getAttribute("aria-autocomplete")).toBe("list");

158-

expect(input!.getAttribute("aria-expanded")).toBe("true");

159-

expect(input!.getAttribute("aria-controls")).toBe("cmd-palette-listbox");

160-

expect(input!.getAttribute("aria-activedescendant")).toBe("cmd-palette-option-nav-overview");

154+

expect(input?.getAttribute("role")).toBe("combobox");

155+

expect(input?.getAttribute("aria-autocomplete")).toBe("list");

156+

expect(input?.getAttribute("aria-expanded")).toBe("true");

157+

expect(input?.getAttribute("aria-controls")).toBe("cmd-palette-listbox");

158+

expect(input?.getAttribute("aria-activedescendant")).toBe("cmd-palette-option-nav-overview");

161159

expect(document.activeElement).toBe(input);

162160163-

expect(listbox).not.toBeNull();

164-

expect(listbox!.getAttribute("role")).toBe("listbox");

165-

const option = listbox!.querySelector<HTMLElement>("#cmd-palette-option-nav-overview");

166-

expect(option).not.toBeNull();

167-

expect(option!.getAttribute("role")).toBe("option");

168-

expect(option!.getAttribute("aria-selected")).toBe("true");

161+

expect(listbox?.getAttribute("role")).toBe("listbox");

162+

const option = listbox?.querySelector<HTMLElement>("#cmd-palette-option-nav-overview");

163+

expect(option?.getAttribute("role")).toBe("option");

164+

expect(option?.getAttribute("aria-selected")).toBe("true");

169165

});

170166171167

it("traps Tab on the combobox and restores focus on Escape", async () => {

@@ -177,15 +173,14 @@ describe("command palette", () => {

177173178174

await renderPalette({ onToggle });

179175

const input = container.querySelector<HTMLInputElement>("#cmd-palette-input");

180-

expect(input).not.toBeNull();

181176

expect(document.activeElement).toBe(input);

182177183178

const tab = new KeyboardEvent("keydown", {

184179

key: "Tab",

185180

bubbles: true,

186181

cancelable: true,

187182

});

188-

input!.dispatchEvent(tab);

183+

input?.dispatchEvent(tab);

189184

expect(tab.defaultPrevented).toBe(true);

190185

expect(document.activeElement).toBe(input);

191186

@@ -194,7 +189,7 @@ describe("command palette", () => {

194189

bubbles: true,

195190

cancelable: true,

196191

});

197-

input!.dispatchEvent(escape);

192+

input?.dispatchEvent(escape);

198193

expect(escape.defaultPrevented).toBe(true);

199194

expect(onToggle).toHaveBeenCalledTimes(1);

200195

@@ -208,17 +203,17 @@ describe("command palette", () => {

208203

await renderPalette({ onToggle });

209204

const dialog = container.querySelector<HTMLDialogElement>("dialog.cmd-palette-overlay");

210205

const input = container.querySelector<HTMLInputElement>("#cmd-palette-input");

211-

expect(dialog).not.toBeNull();

212-

expect(input).not.toBeNull();

206+

expect(dialog?.open).toBe(true);

207+

expect(input?.id).toBe("cmd-palette-input");

213208214-

input!.dispatchEvent(

209+

input?.dispatchEvent(

215210

new KeyboardEvent("keydown", {

216211

key: "Escape",

217212

bubbles: true,

218213

cancelable: true,

219214

}),

220215

);

221-

dialog!.dispatchEvent(new Event("cancel", { cancelable: true }));

216+

dialog?.dispatchEvent(new Event("cancel", { cancelable: true }));

222217223218

expect(onToggle).toHaveBeenCalledTimes(1);

224219

});