jest to vitest

This commit is contained in:
marocchino 2025-04-11 07:17:55 +09:00
parent e39079643f
commit faaf52818d
No known key found for this signature in database
GPG key ID: F54107506CCF18D0
10 changed files with 2630 additions and 4071 deletions

View file

@ -11,8 +11,10 @@
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"build_test": "tsc && jest",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"build_test": "tsc && vitest run",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
},
"repository": {
@ -34,15 +36,10 @@
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@swc/core": "^1.11.18",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"jest-environment-node": "^29.7.0",
"js-yaml": "^4.1.0",
"typescript": "^5.8.3"
"typescript": "^5.8.3",
"vitest": "^1.4.0"
}
}