chore(desktop): add vitest for pure-helper tests

This commit is contained in:
Jannis Braun
2026-04-27 12:29:38 +02:00
parent 4fa2414933
commit 4574a99f2a
3 changed files with 15 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
include: ['src/**/*.test.ts'],
environment: 'node',
},
});