test: split live tests into separate config

This commit is contained in:
Peter Steinberger
2026-01-08 02:00:11 +01:00
parent 28e725215d
commit 5e01e64cf3
4 changed files with 18 additions and 0 deletions

15
vitest.live.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["src/**/*.live.test.ts"],
setupFiles: ["test/setup.ts"],
exclude: [
"dist/**",
"apps/macos/**",
"apps/macos/.build/**",
"**/vendor/**",
"dist/Clawdbot.app/**",
],
},
});