chore(cli): add vitest config for CLI test suite

This commit is contained in:
kumarabhirup 2026-03-02 18:32:03 -08:00
parent 6d51543f39
commit b7ddb23e34
No known key found for this signature in database
GPG Key ID: DB7CA2289CAB0167

10
src/cli/vitest.config.ts Normal file
View File

@ -0,0 +1,10 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "node",
include: ["**/*.test.ts"],
exclude: ["**/*.live.test.ts", "**/*.e2e.test.ts"],
testTimeout: 30_000,
},
});