mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 15:59:30 +00:00
13 lines
404 B
TypeScript
13 lines
404 B
TypeScript
// Vitest logging config wires the logging test shard.
|
|
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();
|