@kya-os/create-mcpi-app 1.8.47 → 1.8.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Vitest configuration for integration tests only.
3
+ *
4
+ * Integration tests hit live external APIs (KTA) and should be run separately
5
+ * from unit tests using: pnpm test:integration
6
+ */
7
+ import { defineConfig } from "vitest/config";
8
+
9
+ export default defineConfig({
10
+ test: {
11
+ // Only include integration tests
12
+ include: ["src/__tests__/integration/*.integration.test.ts"],
13
+ // Standard exclusions
14
+ exclude: ["**/node_modules/**", "**/dist/**"],
15
+ },
16
+ });