mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-23 01:30:26 +08:00
2a83f1d666
* feat: add playwright e2e testing framework
12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
import Vue from '@vitejs/plugin-vue';
|
|
import VueJsx from '@vitejs/plugin-vue-jsx';
|
|
import { configDefaults, defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
plugins: [Vue(), VueJsx()],
|
|
test: {
|
|
environment: 'happy-dom',
|
|
exclude: [...configDefaults.exclude, '**/e2e/**'],
|
|
},
|
|
});
|