Add Vitest testing framework and implement tests for memory management features

This commit is contained in:
olaservo
2025-10-28 20:06:34 -07:00
parent 99c85da526
commit e68a555943
6 changed files with 597 additions and 23 deletions

View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['**/__tests__/**/*.test.ts'],
coverage: {
provider: 'v8',
include: ['**/*.ts'],
exclude: ['**/__tests__/**', '**/dist/**'],
},
},
});