Plugins/test-utils: migrate to scoped plugin-sdk imports

This commit is contained in:
Gustavo Madeira Santana
2026-03-04 02:33:13 -05:00
parent f006c5f5c1
commit 8377dbba30
3 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
import type { PluginRuntime } from "openclaw/plugin-sdk/compat";
import { removeAckReactionAfterReply, shouldAckReaction } from "openclaw/plugin-sdk/compat";
import type { PluginRuntime } from "openclaw/plugin-sdk/test-utils";
import { removeAckReactionAfterReply, shouldAckReaction } from "openclaw/plugin-sdk/test-utils";
import { vi } from "vitest";
type DeepPartial<T> = {

View File

@@ -1,4 +1,4 @@
import type { RuntimeEnv } from "openclaw/plugin-sdk/compat";
import type { RuntimeEnv } from "openclaw/plugin-sdk/test-utils";
import { vi } from "vitest";
export function createRuntimeEnv(): RuntimeEnv {

View File

@@ -2,7 +2,7 @@ import type {
ChannelAccountSnapshot,
ChannelGatewayContext,
OpenClawConfig,
} from "openclaw/plugin-sdk/compat";
} from "openclaw/plugin-sdk/test-utils";
import { vi } from "vitest";
import { createRuntimeEnv } from "./runtime-env.js";