mirror of
https://github.com/un-pany/v3-admin-vite.git
synced 2025-04-22 11:59:19 +08:00
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
|
import { defineConfig } from "vitest/config"
|
|||
|
|
|||
|
/** Vitest 单元测试配置:https://cn.vitest.dev/config */
|
|||
|
export default defineConfig({
|
|||
|
test: {
|
|||
|
include: ["test/**/*.test.ts"]
|
|||
|
}
|
|||
|
})
|