mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 01:31:08 +00:00
15 lines
480 B
TypeScript
15 lines
480 B
TypeScript
import { pluginSdkLightTestFiles } from "./vitest.plugin-sdk-paths.mjs";
|
|
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export function createPluginSdkLightVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig(pluginSdkLightTestFiles, {
|
|
dir: "src",
|
|
env,
|
|
includeOpenClawRuntimeSetup: false,
|
|
name: "plugin-sdk-light",
|
|
passWithNoTests: true,
|
|
});
|
|
}
|
|
|
|
export default createPluginSdkLightVitestConfig();
|