aboutsummaryrefslogtreecommitdiffhomepage
path: root/pkgs/server/vitest.config.ts
blob: af9649febb4603e4d8d291be89c15baede382f3f (plain)
1
2
3
4
5
6
7
8
9
10
import { defineConfig } from "vitest/config";

export default defineConfig({
	test: {
		globals: true,
		env: {
			JWT_SECRET: "test-secret-key",
		},
	},
});