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

推荐订阅源

J
Java Code Geeks
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
WordPress大学
WordPress大学
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
C
Check Point Blog
P
Proofpoint News Feed
H
Help Net Security
月光博客
月光博客
博客园_首页
Stack Overflow Blog
Stack Overflow Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
U
Unit 42
美团技术团队
I
InfoQ
A
About on SuperTechFans

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 memory wiki markdown assertions · openclaw/...
shakkernerd · 2026-05-11 · via Recent Commits to openclaw:main

@@ -110,40 +110,36 @@ describe("toWikiPageSummary", () => {

110110

raw,

111111

});

112112113-

expect(summary).toEqual(

114-

expect.objectContaining({

115-

entityType: "person",

116-

canonicalId: "maintainer.brad-groux",

117-

aliases: ["brad", "bgroux"],

113+

expect(summary.entityType).toBe("person");

114+

expect(summary.canonicalId).toBe("maintainer.brad-groux");

115+

expect(summary.aliases).toEqual(["brad", "bgroux"]);

116+

expect(summary.privacyTier).toBe("local-private");

117+

expect(summary.bestUsedFor).toEqual(["Microsoft ecosystem routing"]);

118+

expect(summary.notEnoughFor).toEqual(["legal approval"]);

119+

expect(summary.lastRefreshedAt).toBe("2026-04-29T00:00:00.000Z");

120+

expect(summary.personCard?.handles).toEqual(["@bgroux"]);

121+

expect(summary.personCard?.emails).toEqual(["brad@example.com"]);

122+

expect(summary.personCard?.lane).toBe("Microsoft Teams");

123+

expect(summary.personCard?.privacyTier).toBe("confirm-before-use");

124+

expect(summary.relationships).toEqual([

125+

{

126+

targetId: "entity.alice",

127+

targetTitle: "Alice",

128+

kind: "collaborates-with",

129+

weight: 0.7,

130+

confidence: 0.6,

131+

evidenceKind: "discrawl-stat",

118132

privacyTier: "local-private",

119-

bestUsedFor: ["Microsoft ecosystem routing"],

120-

notEnoughFor: ["legal approval"],

121-

lastRefreshedAt: "2026-04-29T00:00:00.000Z",

122-

personCard: expect.objectContaining({

123-

handles: ["@bgroux"],

124-

emails: ["brad@example.com"],

125-

lane: "Microsoft Teams",

126-

privacyTier: "confirm-before-use",

127-

}),

128-

relationships: [

129-

expect.objectContaining({

130-

targetId: "entity.alice",

131-

kind: "collaborates-with",

132-

evidenceKind: "discrawl-stat",

133-

}),

134-

],

135-

claims: [

136-

expect.objectContaining({

137-

id: "claim.brad.teams",

138-

evidence: [

139-

expect.objectContaining({

140-

kind: "maintainer-whois",

141-

privacyTier: "local-private",

142-

}),

143-

],

144-

}),

145-

],

146-

}),

147-

);

133+

},

134+

]);

135+

expect(summary.claims[0]?.id).toBe("claim.brad.teams");

136+

expect(summary.claims[0]?.evidence).toEqual([

137+

{

138+

kind: "maintainer-whois",

139+

sourceId: "source.maintainers",

140+

confidence: 0.8,

141+

privacyTier: "local-private",

142+

},

143+

]);

148144

});

149145

});