๐Ÿ“ฆ colinhacks / zshy

๐Ÿ“„ vitest.config.ts ยท 13 lines
1
2
3
4
5
6
7
8
9
10
11
12
13import { defineConfig } from "vitest/config";

export default defineConfig({
	test: {
		testTimeout: 30000, // Increase timeout for subprocess tests
		include: ["test/**/*.test.ts"],
		snapshotFormat: {
			escapeString: false,
			printBasicPrototype: false,
		},
	},
});