test: add vitest config file

This commit is contained in:
Ritesh Ghosh
2024-01-07 17:25:11 +05:30
parent d4cdbba51c
commit f25c12a560
+9
View File
@@ -0,0 +1,9 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
name: "aniwatch-api",
environment: "node",
testTimeout: 6000,
},
});