mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-27 09:21:35 +07:00
13 lines
396 B
TypeScript
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();
|