mirror of
https://github.com/Lissy93/dashy.git
synced 2026-03-16 01:33:44 +01:00
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
import { defineConfig } from 'vitest/config';
|
|
import { createVuePlugin } from 'vite-plugin-vue2';
|
|
import path from 'path';
|
|
|
|
export default defineConfig({
|
|
plugins: [createVuePlugin()],
|
|
test: {
|
|
// Use happy-dom for faster DOM simulation
|
|
environment: 'happy-dom',
|
|
|
|
// Make test functions available globally (describe, it, expect, etc.)
|
|
globals: true,
|
|
|
|
// Setup file for global test configuration
|
|
setupFiles: ['./tests/setup.js'],
|
|
|
|
// Include patterns
|
|
include: ['tests/**/*.{test,spec}.{js,ts}', 'src/**/*.{test,spec}.{js,ts}'],
|
|
|
|
// Coverage configuration
|
|
coverage: {
|
|
provider: 'v8',
|
|
reporter: ['text', 'json', 'html'],
|
|
exclude: [
|
|
'node_modules/',
|
|
'tests/',
|
|
'*.config.js',
|
|
'dist/',
|
|
'.github/',
|
|
'docs/',
|
|
],
|
|
},
|
|
},
|
|
|
|
resolve: {
|
|
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue'],
|
|
// Match the alias configuration from vue.config.js
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
vue: 'vue/dist/vue.esm.js', // Use the full build for tests
|
|
},
|
|
},
|
|
});
|