refactor(feishu): remove unused exports

This commit is contained in:
Peter Steinberger
2026-07-13 19:02:54 +01:00
parent 35a02653c8
commit eb60b2208c
63 changed files with 672 additions and 1214 deletions
@@ -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(() => {