mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 06:41:08 +00:00
60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
import { defineProject } from "vitest/config";
|
|
import { loadPatternListFromEnv } from "./vitest.pattern-file.ts";
|
|
import { resolveVitestIsolation } from "./vitest.scoped-config.ts";
|
|
import { sharedVitestConfig } from "./vitest.shared.config.ts";
|
|
import {
|
|
unitTestAdditionalExcludePatterns,
|
|
unitTestIncludePatterns,
|
|
} from "./vitest.unit-paths.mjs";
|
|
|
|
const sharedTest = sharedVitestConfig.test ?? {};
|
|
const exclude = sharedTest.exclude ?? [];
|
|
|
|
export function loadIncludePatternsFromEnv(
|
|
env: Record<string, string | undefined> = process.env,
|
|
): string[] | null {
|
|
return loadPatternListFromEnv("OPENCLAW_VITEST_INCLUDE_FILE", env);
|
|
}
|
|
|
|
export function loadExtraExcludePatternsFromEnv(
|
|
env: Record<string, string | undefined> = process.env,
|
|
): string[] {
|
|
return loadPatternListFromEnv("OPENCLAW_VITEST_EXTRA_EXCLUDE_FILE", env) ?? [];
|
|
}
|
|
|
|
export function createUnitVitestConfigWithOptions(
|
|
env: Record<string, string | undefined> = process.env,
|
|
options: {
|
|
includePatterns?: string[];
|
|
extraExcludePatterns?: string[];
|
|
} = {},
|
|
) {
|
|
return defineProject({
|
|
...sharedVitestConfig,
|
|
test: {
|
|
...sharedTest,
|
|
name: "unit",
|
|
isolate: resolveVitestIsolation(env),
|
|
runner: "./test/non-isolated-runner.ts",
|
|
setupFiles: [
|
|
...new Set([...(sharedTest.setupFiles ?? []), "test/setup-openclaw-runtime.ts"]),
|
|
],
|
|
include:
|
|
loadIncludePatternsFromEnv(env) ?? options.includePatterns ?? unitTestIncludePatterns,
|
|
exclude: [
|
|
...new Set([
|
|
...exclude,
|
|
...(options.extraExcludePatterns ?? unitTestAdditionalExcludePatterns),
|
|
...loadExtraExcludePatternsFromEnv(env),
|
|
]),
|
|
],
|
|
},
|
|
});
|
|
}
|
|
|
|
export function createUnitVitestConfig(env: Record<string, string | undefined> = process.env) {
|
|
return createUnitVitestConfigWithOptions(env);
|
|
}
|
|
|
|
export default createUnitVitestConfigWithOptions();
|