mirror of https://github.com/openclaw/openclaw.git
13 lines
359 B
TypeScript
13 lines
359 B
TypeScript
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export function createPluginSdkVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig(["src/plugin-sdk/**/*.test.ts"], {
|
|
dir: "src",
|
|
env,
|
|
name: "plugin-sdk",
|
|
passWithNoTests: true,
|
|
});
|
|
}
|
|
|
|
export default createPluginSdkVitestConfig();
|