From 1d27e0ef084baaaee054e28c8557ce7359e8c656 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 16 Apr 2026 18:16:03 +0100 Subject: [PATCH] test: keep discord channel actions on public test SDK --- extensions/discord/src/channel-actions.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/discord/src/channel-actions.test.ts b/extensions/discord/src/channel-actions.test.ts index 73a1e7e7eef..806f27554cd 100644 --- a/extensions/discord/src/channel-actions.test.ts +++ b/extensions/discord/src/channel-actions.test.ts @@ -1,8 +1,8 @@ import { Type } from "@sinclair/typebox"; import type { ChannelMessageActionContext } from "openclaw/plugin-sdk/channel-contract"; import type { OpenClawConfig } from "openclaw/plugin-sdk/config-runtime"; +import { withEnv } from "openclaw/plugin-sdk/testing"; import { describe, expect, it, vi } from "vitest"; -import { withEnv } from "../../../src/test-utils/env.js"; const handleDiscordMessageActionMock = vi.hoisted(() => vi.fn(async () => ({ content: [], details: { ok: true } })),