Files
openclaw/vitest.channels.config.ts
2026-03-23 11:48:19 +00:00

13 lines
396 B
TypeScript

import { channelTestInclude } from "./vitest.channel-paths.mjs";
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
export function createChannelsVitestConfig(env?: Record<string, string | undefined>) {
return createScopedVitestConfig(channelTestInclude, {
env,
pool: "threads",
exclude: ["src/gateway/**"],
});
}
export default createChannelsVitestConfig();