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

推荐订阅源

MyScale Blog
MyScale Blog
博客园 - 司徒正美
A
About on SuperTechFans
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
F
Fortinet All Blogs
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
D
Docker
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
H
Help Net Security
量子位
IT之家
IT之家

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 matrix empty state assertions · openclaw/op...
shakkernerd · 2026-05-09 · via Recent Commits to openclaw:main

@@ -214,7 +214,7 @@ describe("markdownToMatrixHtml", () => {

214214215215

expect(result.html).toContain("@alice:example.org/path");

216216

expect(result.html).not.toContain("matrix.to");

217-

expect(result.mentions).toEqual({});

217+

expect(result.mentions).toStrictEqual({});

218218

});

219219220220

it("accepts bracketed homeservers in matrix mentions", async () => {

@@ -251,7 +251,7 @@ describe("markdownToMatrixHtml", () => {

251251

});

252252253253

expect(result.html).not.toContain("matrix.to");

254-

expect(result.mentions).toEqual({});

254+

expect(result.mentions).toStrictEqual({});

255255

});

256256257257

it("does not convert escaped qualified mentions", async () => {

@@ -262,7 +262,7 @@ describe("markdownToMatrixHtml", () => {

262262263263

expect(result.html).toContain("@alice:example.org");

264264

expect(result.html).not.toContain("matrix.to");

265-

expect(result.mentions).toEqual({});

265+

expect(result.mentions).toStrictEqual({});

266266

});

267267268268

it("does not convert escaped room mentions", async () => {

@@ -272,7 +272,7 @@ describe("markdownToMatrixHtml", () => {

272272

});

273273274274

expect(result.html).toContain("@room");

275-

expect(result.mentions).toEqual({});

275+

expect(result.mentions).toStrictEqual({});

276276

});

277277278278

it("keeps escaped mentions literal after escaped backticks", async () => {

@@ -283,7 +283,7 @@ describe("markdownToMatrixHtml", () => {

283283284284

expect(result.html).toContain("`literal then @alice:example.org");

285285

expect(result.html).not.toContain("matrix.to");

286-

expect(result.mentions).toEqual({});

286+

expect(result.mentions).toStrictEqual({});

287287

});

288288289289

it("restores escaped mentions in markdown link labels without linking them", async () => {

@@ -294,7 +294,7 @@ describe("markdownToMatrixHtml", () => {

294294295295

expect(result.html).toContain('<a href="https://example.com">@alice:example.org</a>');

296296

expect(result.html).not.toContain("matrix.to");

297-

expect(result.mentions).toEqual({});

297+

expect(result.mentions).toStrictEqual({});

298298

});

299299300300

it("keeps backslashes inside code spans", async () => {

@@ -304,7 +304,7 @@ describe("markdownToMatrixHtml", () => {

304304

});

305305306306

expect(result.html).toContain("<code>\\@alice:example.org</code>");

307-

expect(result.mentions).toEqual({});

307+

expect(result.mentions).toStrictEqual({});

308308

});

309309310310

it("does not convert mentions inside code spans", async () => {

@@ -315,7 +315,7 @@ describe("markdownToMatrixHtml", () => {

315315316316

expect(result.html).toContain("<code>@alice:example.org</code>");

317317

expect(result.html).not.toContain("matrix.to");

318-

expect(result.mentions).toEqual({});

318+

expect(result.mentions).toStrictEqual({});

319319

});

320320321321

it("keeps backslashes inside tilde fenced code blocks", async () => {

@@ -325,7 +325,7 @@ describe("markdownToMatrixHtml", () => {

325325

});

326326327327

expect(result.html).toContain("<pre><code>\\@alice:example.org\n</code></pre>");

328-

expect(result.mentions).toEqual({});

328+

expect(result.mentions).toStrictEqual({});

329329

});

330330331331

it("keeps backslashes inside indented code blocks", async () => {

@@ -335,6 +335,6 @@ describe("markdownToMatrixHtml", () => {

335335

});

336336337337

expect(result.html).toContain("<pre><code>\\@alice:example.org\n</code></pre>");

338-

expect(result.mentions).toEqual({});

338+

expect(result.mentions).toStrictEqual({});

339339

});

340340

});