added api logic, vitest, minimal testing ui
This commit is contained in:
14
api/vitest.config.ts
Normal file
14
api/vitest.config.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { defineConfig } from "vitest/config";
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
environment: "node",
|
||||
include: ["tests/**/*.test.ts"],
|
||||
// run single-threaded to keep DB tests deterministic
|
||||
pool: "threads",
|
||||
poolOptions: { threads: { singleThread: true } },
|
||||
testTimeout: 30_000,
|
||||
env: { NODE_ENV: "test" },
|
||||
setupFiles: ['tests/setup.ts'],
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user