test: T29-T31 component tests (20) + frontend stresstest (7) + backend DB stresstest (6) with 50k elements

This commit is contained in:
2026-06-26 16:20:09 +02:00
parent 1d6c2cb30e
commit 89b91a1050
7 changed files with 819 additions and 2 deletions
+3 -2
View File
@@ -12,10 +12,11 @@ export default defineConfig({
test: {
globals: true,
environment: 'jsdom',
include: ['tests/**/*.test.ts'],
include: ['tests/**/*.test.ts', 'tests/**/*.test.tsx'],
setupFiles: ['tests/setup.ts'],
coverage: {
provider: 'v8',
include: ['src/canvas/**', 'src/history/**'],
include: ['src/canvas/**', 'src/history/**', 'src/components/**'],
},
},
});