chore: install vitest and configure test environment

This commit is contained in:
DanielS
2026-07-09 21:56:10 +02:00
parent 0621a0be16
commit 988625ba42
3 changed files with 1616 additions and 22 deletions

View File

@@ -4,7 +4,8 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint ."
"lint": "eslint .",
"test": "vitest run"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
@@ -51,6 +52,7 @@
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
"typescript": "^5",
"vitest": "^1.6.0"
}
}