Establishing unit tests using vitest.

This commit is contained in:
Robin Tail
2026-01-12 15:05:30 +01:00
parent 5fa8c3603d
commit c89f1b9537
6 changed files with 2206 additions and 1238 deletions
+9
View File
@@ -0,0 +1,9 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
exclude: ['node_modules', '.temp'],
},
});