supplier_central_frontend/vitest.config.ts
vickytechkey 3a5b5f50c5
All checks were successful
Beta CI/CD Pipeline / build-and-test (push) Successful in 45s
Beta CI/CD Pipeline / deploy-beta (push) Successful in 7s
fixing tha playwright
2026-08-14 15:28:41 +05:30

20 lines
438 B
TypeScript

import { defineConfig, mergeConfig } from 'vitest/config'
import viteConfig from './vite.config.ts'
export default mergeConfig(
viteConfig,
defineConfig({
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/setupTests.ts',
exclude: [
'**/node_modules/**',
'**/dist/**',
'**/cypress/**',
'**/playwright/**',
'playwright.config.ts'
],
},
})
)