mirror of
https://github.com/moltbot/moltbot.git
synced 2026-04-25 15:37:32 +00: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();
|