6 lines
262 B
TypeScript
6 lines
262 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
/** 使用轻量 DOM 测试 API、异步状态和 Vue 页面行为。 */
|
|
export default defineConfig({ plugins: [vue()], test: { environment: 'happy-dom', restoreMocks: true } })
|