mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 06:41:08 +00:00
18 lines
437 B
TypeScript
18 lines
437 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import { resolveLocalVitestMaxWorkers, sharedVitestConfig } from "./vitest.shared.config.ts";
|
|
|
|
export { resolveLocalVitestMaxWorkers };
|
|
|
|
export default defineConfig({
|
|
...sharedVitestConfig,
|
|
test: {
|
|
...sharedVitestConfig.test,
|
|
projects: [
|
|
"vitest.unit.config.ts",
|
|
"vitest.boundary.config.ts",
|
|
"vitest.acp.config.ts",
|
|
"vitest.ui.config.ts",
|
|
],
|
|
},
|
|
});
|