mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-08 12:17:27 +08:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
include: ['**/tools.test.ts']
|
|
}
|
|
});
|