add testing to status-page functions

This commit is contained in:
2026-04-25 14:52:13 +02:00
parent 298feb574e
commit 6da907b83b
13 changed files with 154 additions and 43 deletions
+9
View File
@@ -0,0 +1,9 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['src/**/*.test.ts'],
},
});