mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 06:50:41 +00:00
test: clarify extension resilience test names
This commit is contained in:
@@ -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: {
|
||||
|
||||
@@ -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).
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user