mirror of https://github.com/openclaw/openclaw.git
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();
|