test: clarify extension resilience test names

This commit is contained in:
Peter Steinberger
2026-05-08 13:41:40 +01:00
parent 7c8857be99
commit 8ec92f544c
4 changed files with 4 additions and 4 deletions

View File

@@ -463,7 +463,7 @@ describe("msteams monitor handler authz", () => {
);
});
it("does not crash when channelData.tenant is missing and stores no tenantId", async () => {
it("stores no tenantId when channelData.tenant is missing", async () => {
const { conversationStore, deps } = createDeps({
channels: {
msteams: {

View File

@@ -147,7 +147,7 @@ function createSdkStub(): MSTeamsTeamsSdk {
}
describe("createMSTeamsApp", () => {
it("does not crash with express 5 path-to-regexp (#55161)", async () => {
it("creates app without the Express 5 wildcard route regression (#55161)", async () => {
// Regression test for: https://github.com/openclaw/openclaw/issues/55161
// createMSTeamsApp passes a no-op httpServerAdapter to prevent the SDK from
// creating its default HttpPlugin (which registers `/api*` — invalid in Express 5).

View File

@@ -910,7 +910,7 @@ describe("Slack native command argument menus", () => {
);
});
it("treats malformed percent-encoding as an invalid button (no throw)", async () => {
it("treats malformed percent-encoding as an invalid button", async () => {
await runArgMenuAction(argMenuHandler, {
action: { value: "cmdarg|%E0%A4%A|mode|on|U1" },
includeRespond: false,

View File

@@ -332,7 +332,7 @@ describe("processEvent (functional)", () => {
expect(answeredCallId).toBe("call-2");
});
it("when hangup throws, logs and does not throw", () => {
it("removes active call even when hangup rejects", () => {
const provider = createProvider({
hangupCall: async (): Promise<void> => {
throw new Error("provider down");