mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-25 17:02:46 +00:00
85 lines
2.4 KiB
TypeScript
85 lines
2.4 KiB
TypeScript
import { defineConfig } from "vitest/config";
|
|
import baseConfig from "./vitest.config.ts";
|
|
|
|
function normalizePathPattern(value: string): string {
|
|
return value.replaceAll("\\", "/");
|
|
}
|
|
|
|
function relativizeScopedPattern(value: string, dir: string): string {
|
|
const normalizedValue = normalizePathPattern(value);
|
|
const normalizedDir = normalizePathPattern(dir).replace(/\/+$/u, "");
|
|
if (!normalizedDir) {
|
|
return normalizedValue;
|
|
}
|
|
if (normalizedValue === normalizedDir) {
|
|
return ".";
|
|
}
|
|
const prefix = `${normalizedDir}/`;
|
|
return normalizedValue.startsWith(prefix)
|
|
? normalizedValue.slice(prefix.length)
|
|
: normalizedValue;
|
|
}
|
|
|
|
function relativizeScopedPatterns(values: string[], dir?: string): string[] {
|
|
if (!dir) {
|
|
return values.map(normalizePathPattern);
|
|
}
|
|
return values.map((value) => relativizeScopedPattern(value, dir));
|
|
}
|
|
|
|
export function resolveVitestIsolation(
|
|
env: Record<string, string | undefined> = process.env,
|
|
): boolean {
|
|
const forceIsolation = env.OPENCLAW_TEST_ISOLATE === "1" || env.OPENCLAW_TEST_ISOLATE === "true";
|
|
if (forceIsolation) {
|
|
return true;
|
|
}
|
|
return env.OPENCLAW_TEST_NO_ISOLATE === "0" || env.OPENCLAW_TEST_NO_ISOLATE === "false";
|
|
}
|
|
|
|
export function createScopedVitestConfig(
|
|
include: string[],
|
|
options?: {
|
|
dir?: string;
|
|
env?: Record<string, string | undefined>;
|
|
exclude?: string[];
|
|
pool?: "threads" | "forks";
|
|
passWithNoTests?: boolean;
|
|
},
|
|
) {
|
|
const base = baseConfig as unknown as Record<string, unknown>;
|
|
const baseTest =
|
|
(
|
|
baseConfig as {
|
|
test?: {
|
|
dir?: string;
|
|
exclude?: string[];
|
|
pool?: "threads" | "forks";
|
|
passWithNoTests?: boolean;
|
|
};
|
|
}
|
|
).test ?? {};
|
|
const scopedDir = options?.dir;
|
|
const exclude = relativizeScopedPatterns(
|
|
[...(baseTest.exclude ?? []), ...(options?.exclude ?? [])],
|
|
scopedDir,
|
|
);
|
|
const isolate = resolveVitestIsolation(options?.env);
|
|
|
|
return defineConfig({
|
|
...base,
|
|
test: {
|
|
...baseTest,
|
|
isolate,
|
|
runner: "./test/non-isolated-runner.ts",
|
|
...(scopedDir ? { dir: scopedDir } : {}),
|
|
include: relativizeScopedPatterns(include, scopedDir),
|
|
exclude,
|
|
...(options?.pool ? { pool: options.pool } : {}),
|
|
...(options?.passWithNoTests !== undefined
|
|
? { passWithNoTests: options.passWithNoTests }
|
|
: {}),
|
|
},
|
|
});
|
|
}
|