chore(cli): add smoke tests (#489)

This commit is contained in:
Aman Varshney
2025-08-11 02:56:25 +05:30
committed by GitHub
parent d6cf5c9d26
commit 198d6e968b
9 changed files with 2831 additions and 51 deletions

15
apps/cli/vitest.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
watch: false,
testTimeout: 180_000,
hookTimeout: 120_000,
reporters: "default",
poolOptions: {
threads: {
singleThread: true,
},
},
},
});