mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 06:41:08 +00:00
13 lines
333 B
TypeScript
13 lines
333 B
TypeScript
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export function createTuiVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig(["src/tui/**/*.test.ts"], {
|
|
dir: "src",
|
|
env,
|
|
name: "tui",
|
|
passWithNoTests: true,
|
|
});
|
|
}
|
|
|
|
export default createTuiVitestConfig();
|