Add vitest as test framework and remove jest and its dependencies

This commit is contained in:
RcleydsonR
2023-01-24 22:23:15 -03:00
parent 8b5ba69267
commit 6b8bbc9e6a
8 changed files with 152 additions and 45 deletions

View File

@@ -5,8 +5,7 @@
"start": "vite --host=0.0.0.0 --port 3000",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test": "jest",
"test:watch": "jest --verbose --watch",
"test": "vitest",
"serve": "vue-cli-service serve",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
@@ -52,8 +51,7 @@
"ts-jest": "^27.0.0",
"typescript": "~4.7.4",
"vite": "^3.1.8",
"vite-plugin-environment": "^1.1.3",
"vitest": "^0.27.1",
"vitest": "^0.28.1",
"vue-tsc": "^1.0.8",
"vue3-jest": "^27.0.0-alpha.1"
}