Skip to content

Commit 81fd736

Browse files
committed
fix: update dependencies to resolve security vulnerabilities
- Update Rust dependencies to fix RUSTSEC-2025-0008 (windows) and RUSTSEC-2025-0023 (tokio) - Update Jest config to exclude Bun/Vitest test files - Remaining warnings are for unmaintained GTK3 bindings which are Tauri dependencies
1 parent cd0d6bc commit 81fd736

File tree

2 files changed

+851
-649
lines changed

2 files changed

+851
-649
lines changed

jest.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,15 @@ module.exports = {
1313
testPathIgnorePatterns: [
1414
'<rootDir>/node_modules/',
1515
'.*\\.bun\\.test\\.(ts|tsx)$',
16+
'.*\\.vitest\\.test\\.(ts|tsx)$',
1617
'<rootDir>/src/__tests__/services/translation-service.test.ts',
1718
'<rootDir>/src/__tests__/services/translation-runner.test.ts',
1819
'<rootDir>/src/__tests__/adapters/openai-adapter.test.ts',
1920
'<rootDir>/src/__tests__/tabs/mods-tab.test.tsx',
20-
'<rootDir>/src/__tests__/components/translation-tab.test.tsx'
21+
'<rootDir>/src/__tests__/components/translation-tab.test.tsx',
22+
'<rootDir>/src/__tests__/e2e/**/*',
23+
'<rootDir>/src/__tests__/services/file-service-lang-format.test.ts',
24+
'<rootDir>/src/__tests__/test-setup.ts'
2125
],
2226
collectCoverageFrom: [
2327
'src/**/*.{js,jsx,ts,tsx}',

0 commit comments

Comments
 (0)