fix(deps): align @vitest/coverage-v8 to 4.1.0 and fix vite peer dep conflict
All checks were successful
continuous-integration/drone/pr Build is passing

- Update @vitest/coverage-v8 lockfile entry from 4.0.18 to 4.1.0 to match vitest@4.1.0
- Fix vite peer dep: merge '^8.0.0-0' range into existing vite@7.3.1 lockfile entry
  (avoids yarn classic hoisting conflict that caused install failure)
- Add testTimeout: 10000 to vitest config for slow CI environment
This commit is contained in:
2026-03-13 23:04:00 +01:00
parent dac40154e3
commit 160449f954
2 changed files with 9 additions and 22 deletions

View File

@@ -30,6 +30,7 @@ export default defineConfig({
test: {
environment: 'jsdom',
setupFiles: ['./tests/setup.ts'],
testTimeout: 10000,
coverage: {
provider: 'v8',
include: ['src/**/*.{ts,tsx}'],