test: use public plugin sdk test fixtures

This commit is contained in:
Peter Steinberger
2026-04-28 03:52:12 +01:00
parent 518d568de5
commit a812b8f919
13 changed files with 10 additions and 24 deletions

View File

@@ -1,5 +1,6 @@
import { mkdirSync } from "node:fs";
import { join } from "node:path";
import { bundledPluginFile, bundledPluginRoot } from "openclaw/plugin-sdk/test-fixtures";
import { afterEach, describe, expect, it } from "vitest";
import {
collectPublishablePluginPackages,
@@ -12,7 +13,6 @@ import {
resolveSelectedPublishablePluginPackages,
type PublishablePluginPackage,
} from "../scripts/lib/plugin-npm-release.ts";
import { bundledPluginFile, bundledPluginRoot } from "./helpers/bundled-plugin-paths.js";
import { cleanupTempDirs, makeTempRepoRoot, writeJsonFile } from "./helpers/temp-repo.js";
const tempDirs: string[] = [];