vitest/test/vue/vitest.config.ts
2021-12-12 03:07:14 +08:00

13 lines
199 B
TypeScript

import { defineConfig } from 'vite'
import Vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [
Vue(),
],
test: {
global: true,
environment: 'happy-dom',
},
})