mirror of
https://fastgit.cc/github.com/openclaw/openclaw
synced 2026-04-20 21:02:10 +08:00
12 lines
298 B
TypeScript
12 lines
298 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import { sharedVitestConfig } from "./vitest.shared.config.ts";
|
|
|
|
export default defineConfig({
|
|
...sharedVitestConfig,
|
|
test: {
|
|
...sharedVitestConfig.test,
|
|
runner: undefined,
|
|
projects: ["test/vitest/vitest.unit-fast.config.ts"],
|
|
},
|
|
});
|