mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-27 21:07:01 -06:00
refactor(feishu): remove unused exports
This commit is contained in:
@@ -27,7 +27,8 @@ vi.mock("./client.js", async () => {
|
||||
|
||||
vi.mock("./runtime.js", () => createFeishuRuntimeMockModule());
|
||||
|
||||
import { monitorFeishuProvider, stopFeishuMonitor } from "./monitor.js";
|
||||
import { cleanupFeishuMonitorStateForTests } from "./monitor.cleanup.test-helpers.js";
|
||||
import { monitorFeishuProvider } from "./monitor.js";
|
||||
import { httpServers } from "./monitor.state.js";
|
||||
|
||||
beforeAll(async () => {
|
||||
@@ -72,8 +73,8 @@ async function postSignedPayload(url: string, payload: Record<string, unknown>)
|
||||
});
|
||||
}
|
||||
|
||||
afterEach(async () => {
|
||||
await stopFeishuMonitor();
|
||||
afterEach(() => {
|
||||
cleanupFeishuMonitorStateForTests();
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
|
||||
Reference in New Issue
Block a user