test: clarify extension resilience test names · openclaw/openclaw@8ec92f5
steipete
·
2026-05-08
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -463,7 +463,7 @@ describe("msteams monitor handler authz", () => {
|
463 | 463 | ); |
464 | 464 | }); |
465 | 465 | |
466 | | -it("does not crash when channelData.tenant is missing and stores no tenantId", async () => { |
| 466 | +it("stores no tenantId when channelData.tenant is missing", async () => { |
467 | 467 | const { conversationStore, deps } = createDeps({ |
468 | 468 | channels: { |
469 | 469 | msteams: { |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -147,7 +147,7 @@ function createSdkStub(): MSTeamsTeamsSdk {
|
147 | 147 | } |
148 | 148 | |
149 | 149 | describe("createMSTeamsApp", () => { |
150 | | -it("does not crash with express 5 path-to-regexp (#55161)", async () => { |
| 150 | +it("creates app without the Express 5 wildcard route regression (#55161)", async () => { |
151 | 151 | // Regression test for: https://github.com/openclaw/openclaw/issues/55161 |
152 | 152 | // createMSTeamsApp passes a no-op httpServerAdapter to prevent the SDK from |
153 | 153 | // creating its default HttpPlugin (which registers `/api*` — invalid in Express 5). |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -910,7 +910,7 @@ describe("Slack native command argument menus", () => {
|
910 | 910 | ); |
911 | 911 | }); |
912 | 912 | |
913 | | -it("treats malformed percent-encoding as an invalid button (no throw)", async () => { |
| 913 | +it("treats malformed percent-encoding as an invalid button", async () => { |
914 | 914 | await runArgMenuAction(argMenuHandler, { |
915 | 915 | action: { value: "cmdarg|%E0%A4%A|mode|on|U1" }, |
916 | 916 | includeRespond: false, |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -332,7 +332,7 @@ describe("processEvent (functional)", () => {
|
332 | 332 | expect(answeredCallId).toBe("call-2"); |
333 | 333 | }); |
334 | 334 | |
335 | | -it("when hangup throws, logs and does not throw", () => { |
| 335 | +it("removes active call even when hangup rejects", () => { |
336 | 336 | const provider = createProvider({ |
337 | 337 | hangupCall: async (): Promise<void> => { |
338 | 338 | throw new Error("provider down"); |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。