We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d1a234 commit 51816b5Copy full SHA for 51816b5
vitest.config.ts
@@ -0,0 +1,19 @@
1
+import { fileURLToPath } from 'node:url';
2
+import { mergeConfig, defineConfig, configDefaults } from 'vitest/config';
3
+import viteConfig from './vite.config';
4
+
5
+export default mergeConfig(
6
+ viteConfig,
7
+ defineConfig({
8
+ test: {
9
+ environment: 'jsdom',
10
+ exclude: [...configDefaults.exclude, 'e2e/*'],
11
+ root: fileURLToPath(new URL('./', import.meta.url)),
12
+ server: {
13
+ deps: {
14
+ inline: ['element-plus', 'vuetify-inline-fields', 'vuetify']
15
+ }
16
17
18
+ })
19
+);
0 commit comments