mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-10 08:41:13 +00:00
11 lines
295 B
TypeScript
11 lines
295 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,
|
|
});
|
|
}
|
|
|
|
export default createUiVitestConfig();
|