Files
wtr/vitest.config.ts
zv bdba3c709c
All checks were successful
CI / Lint, test, typecheck and build (push) Successful in 9m58s
test: add weather logic test suite
2026-06-14 20:44:37 +02:00

15 lines
250 B
TypeScript

import { defineConfig } from "vitest/config";
import path from "node:path";
export default defineConfig({
resolve: {
alias: {
"@": path.resolve(__dirname, "."),
},
},
test: {
environment: "node",
globals: false,
},
});