Intoduce vitest

This commit is contained in:
kimatata
2024-05-16 09:51:35 +09:00
parent 5d063873ce
commit ce73084f07
3 changed files with 1631 additions and 32 deletions

View File

@@ -6,7 +6,9 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@nextui-org/react": "^2.2.9",
@@ -34,5 +36,9 @@
"tailwind-variants": "^0.1.18",
"tailwindcss": "3.3.5",
"typescript": "5.0.4"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.0",
"vitest": "^1.6.0"
}
}