chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / ui / web / vitest.config.ts
index 2bca60e9e89dcfd5ced113f7251d741d94aec267..39905b29c5bf4f670d2ab327e584209f0a81aafb 100644 (file)
@@ -1,7 +1,7 @@
-import { fileURLToPath } from 'node:url';
-import { configDefaults, defineConfig } from 'vitest/config';
-import { mergeConfig } from 'vite';
-import viteConfig from './vite.config';
+import { fileURLToPath } from 'node:url'
+import { configDefaults, defineConfig } from 'vitest/config'
+import { mergeConfig } from 'vite'
+import viteConfig from './vite.config'
 
 export default mergeConfig(
   viteConfig,
@@ -12,8 +12,8 @@ export default mergeConfig(
       root: fileURLToPath(new URL('./', import.meta.url)),
       coverage: {
         provider: 'v8',
-        reporter: ['text', 'lcov'],
-      },
-    },
-  }),
-);
+        reporter: ['text', 'lcov']
+      }
+    }
+  })
+)