test(plugin): switch vitest config to .ts test files

This commit is contained in:
Research Assistant 2026-05-24 17:29:06 +08:00
parent 4a451783a2
commit 4ce4e35d36

View file

@ -3,7 +3,7 @@ import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'jsdom',
include: ['tests/**/*.test.mjs'],
include: ['tests/**/*.test.ts'],
globals: true,
},
});