mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-22 06:32:00 +00:00
12 lines
311 B
TypeScript
12 lines
311 B
TypeScript
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export function createUiVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig(["ui/src/ui/**/*.test.ts"], {
|
|
dir: "ui/src/ui",
|
|
env,
|
|
name: "ui",
|
|
});
|
|
}
|
|
|
|
export default createUiVitestConfig();
|