Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-22 11:59:19 +08:00
v3-admin-vite/vitest.config.ts

9 lines
192 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { defineConfig } from "vitest/config"
/** Vitest 单元测试配置https://cn.vitest.dev/config */
export default defineConfig({
test: {
include: ["test/**/*.test.ts"]
}
})