mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 12:17:37 +08:00
3ea96be394
* feat(ci): replace cypress to puppeteer - Replace cypress with puppeteer * Implement puppeteer with screenshots * Remove unused variables
18 lines
431 B
TypeScript
18 lines
431 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import vueJsx from '@vitejs/plugin-vue-jsx'
|
|
import DefineOptions from 'unplugin-vue-define-options/rollup'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue(), vueJsx(), DefineOptions()],
|
|
server: {
|
|
port: 5000,
|
|
},
|
|
test: {
|
|
include: ['**/*.puppeteer.{ts,tsx}'],
|
|
testTimeout: 30_000,
|
|
hookTimeout: 30_000,
|
|
},
|
|
})
|