frontend + ci
All checks were successful
deploy to production / deploy-frontend (push) Successful in 47s
All checks were successful
deploy to production / deploy-frontend (push) Successful in 47s
This commit is contained in:
14
frontend/vitest.config.js
Normal file
14
frontend/vitest.config.js
Normal file
@ -0,0 +1,14 @@
|
||||
import { fileURLToPath } from 'node:url'
|
||||
import { mergeConfig, defineConfig, configDefaults } from 'vitest/config'
|
||||
import viteConfig from './vite.config'
|
||||
|
||||
export default mergeConfig(
|
||||
viteConfig,
|
||||
defineConfig({
|
||||
test: {
|
||||
environment: 'jsdom',
|
||||
exclude: [...configDefaults.exclude, 'e2e/*'],
|
||||
root: fileURLToPath(new URL('./', import.meta.url))
|
||||
}
|
||||
})
|
||||
)
|
Reference in New Issue
Block a user