test: add CLI and presenter coverage

This commit is contained in:
2026-08-29 18:59:49 +08:00
parent 5224d45994
commit 0cf1f51745
4 changed files with 974 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
include: ['tests/**/*.test.ts'],
exclude: ['tests/e2e/**'],
},
})