added availability

This commit is contained in:
2026-05-01 18:24:09 -04:00
parent ed7cae1acd
commit 036512f590
22 changed files with 8313 additions and 4 deletions

18
vitest.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import { defineConfig } from "vitest/config";
import path from "node:path";
export default defineConfig({
test: {
environment: "node",
setupFiles: ["./test/setup.ts"],
env: { NODE_ENV: "test" },
globals: false,
include: ["test/**/*.test.ts", "src/**/*.test.ts"],
pool: "forks",
fileParallelism: false,
sequence: { concurrent: false },
},
resolve: {
alias: { "@": path.resolve(__dirname, "src") },
},
});