chore: Установка и базовая настройка Vitest

This commit is contained in:
Ilia Mashkov
2026-07-14 19:54:20 +03:00
parent 17730429ad
commit 0ef84021b6
4 changed files with 686 additions and 5 deletions
+6 -2
View File
@@ -9,11 +9,15 @@
"preview": "vite preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
"format": "biome format --write .",
"test:unit": "vitest run",
"test": "yarn test:unit"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"jsdom": "^29.1.1",
"lefthook": "^2.1.10",
"vite": "^8.1.1"
"vite": "^8.1.1",
"vitest": "^4.1.10"
}
}