mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 15:59:30 +00:00
12 lines
431 B
TypeScript
12 lines
431 B
TypeScript
// Vitest gateway methods config wires the gateway methods test shard.
|
|
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
function createGatewayMethodsVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig(["src/gateway/server-methods/**/*.test.ts"], {
|
|
dir: "src/gateway",
|
|
env,
|
|
name: "gateway-methods",
|
|
});
|
|
}
|
|
|
|
export default createGatewayMethodsVitestConfig();
|