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