-
Notifications
You must be signed in to change notification settings - Fork 12
/
vitest.config.js
52 lines (50 loc) · 1.22 KB
/
vitest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue'
import { quasar, transformAssetUrls } from '@quasar/vite-plugin'
import jsconfigPaths from 'vite-jsconfig-paths'
import { viteCommonjs } from '@originjs/vite-plugin-commonjs'
// https://vitejs.dev/config/
export default defineConfig({
test: {
environment: 'jsdom',
testTimeout: 50000,
hookTimeout: 100000,
retry: 3,
coverage: {
provider: 'istanbul',
reporter: ['text', 'json', 'html']
},
setupFiles: 'vitest/setup-file.js',
include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
deps: {
inline: ['vue-echarts', 'echarts']
}
},
plugins: [
vue({
template: { transformAssetUrls }
}),
quasar({
sassVariables: 'src/quasar-variables.scss'
}),
jsconfigPaths(),
viteCommonjs(['vue-echarts'])
],
resolve: {
alias: {
'@': '/src'
}
}
// optimizeDeps: {
// include: ['@web3modal/ethers5'],
// esbuildOptions: {
// target: 'es2020', // Ensure the target environment supports all features
// define: {
// global: 'globalThis'
// },
// supported: {
// bigint: true
// },
// },
// },
})