add testing to status-page functions (#12)

This commit is contained in:
2026-04-25 14:53:38 +02:00
committed by GitHub
parent 298feb574e
commit 1bd96d046c
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'],
},
});