mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 17:51:22 +00:00
12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import { sharedVitestConfig } from "./vitest.shared.config.ts";
|
|
|
|
export default defineConfig({
|
|
...sharedVitestConfig,
|
|
test: {
|
|
...sharedVitestConfig.test,
|
|
runner: undefined,
|
|
projects: ["vitest.unit-fast.config.ts"],
|
|
},
|
|
});
|