mirror of https://github.com/openclaw/openclaw.git
fix(ci): relax feishu runtime test casts
This commit is contained in:
parent
d2dae50a75
commit
99397254a1
|
|
@ -207,7 +207,7 @@ function createBotTestRuntime(): PluginRuntime {
|
|||
buildPairingReply: vi.fn(),
|
||||
},
|
||||
},
|
||||
} as PluginRuntime;
|
||||
} as unknown as PluginRuntime;
|
||||
}
|
||||
|
||||
const {
|
||||
|
|
@ -536,7 +536,7 @@ describe("handleFeishuMessage command authorization", () => {
|
|||
media: {
|
||||
detectMime: vi.fn(async () => "application/octet-stream"),
|
||||
},
|
||||
} as PluginRuntime);
|
||||
} as unknown as PluginRuntime);
|
||||
});
|
||||
|
||||
it("does not enqueue inbound preview text as system events", async () => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue