From ff7563c82833e3598d7c8b64a591ed50ffd745bb Mon Sep 17 00:00:00 2001 From: Paul Valerie GOMA Date: Sat, 19 Jul 2025 02:55:56 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20test=20environment=20setup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vite.config.ts | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 4217010..75dd174 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,8 +1,8 @@ import { fileURLToPath, URL } from 'node:url' - -import { defineConfig } from 'vite' +import { defineConfig } from 'vitest/config' import vue from '@vitejs/plugin-vue' import vueDevTools from 'vite-plugin-vue-devtools' +import path from 'path' // https://vite.dev/config/ export default defineConfig({ @@ -12,7 +12,13 @@ export default defineConfig({ ], resolve: { alias: { - '@': fileURLToPath(new URL('./src', import.meta.url)) + '@': fileURLToPath(new URL('./src', import.meta.url)), + '@visua': path.resolve(__dirname, './node_modules/@cellule-financiere-pmo/visua/output') }, }, + test: { + globals: true, + environment: 'jsdom', + include: ['test/**/*.spec.ts'], + } })