mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 14:51:08 +00:00
28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
import { defineConfig } from "vitest/config";
|
|
import { BUNDLED_PLUGIN_LIVE_TEST_GLOB } from "./vitest.bundled-plugin-paths.ts";
|
|
import baseConfig from "./vitest.config.ts";
|
|
|
|
const base = baseConfig as unknown as Record<string, unknown>;
|
|
const baseTestWithProjects =
|
|
(baseConfig as { test?: { exclude?: string[]; setupFiles?: string[] } }).test ?? {};
|
|
const { projects: _projects, ...baseTest } = baseTestWithProjects as {
|
|
exclude?: string[];
|
|
projects?: string[];
|
|
setupFiles?: string[];
|
|
};
|
|
const exclude = (baseTest.exclude ?? []).filter((p) => p !== "**/*.live.test.ts");
|
|
|
|
export default defineConfig({
|
|
...base,
|
|
test: {
|
|
...baseTest,
|
|
// Live suites need immediate provider/gateway progress output rather than
|
|
// Vitest's buffered per-test console capture.
|
|
disableConsoleIntercept: true,
|
|
maxWorkers: 1,
|
|
setupFiles: [...new Set([...(baseTest.setupFiles ?? []), "test/setup-openclaw-runtime.ts"])],
|
|
include: ["src/**/*.live.test.ts", BUNDLED_PLUGIN_LIVE_TEST_GLOB],
|
|
exclude,
|
|
},
|
|
});
|