mirror of
https://github.com/moltbot/moltbot.git
synced 2026-04-28 08:52:45 +00:00
perf: split hooks, tui, and extension lanes
This commit is contained in:
12
vitest.hooks.config.ts
Normal file
12
vitest.hooks.config.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
||||
|
||||
export function createHooksVitestConfig(env?: Record<string, string | undefined>) {
|
||||
return createScopedVitestConfig(["src/hooks/**/*.test.ts"], {
|
||||
dir: "src/hooks",
|
||||
env,
|
||||
name: "hooks",
|
||||
passWithNoTests: true,
|
||||
});
|
||||
}
|
||||
|
||||
export default createHooksVitestConfig();
|
||||
Reference in New Issue
Block a user