Skip to content

Commit

Permalink
chore: add jest dependency and related files
Browse files Browse the repository at this point in the history
  • Loading branch information
kiki-kanri committed Aug 26, 2024
1 parent ba15c66 commit 49f84e4
Show file tree
Hide file tree
Showing 4 changed files with 2,273 additions and 39 deletions.
5 changes: 5 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/** @type {import('jest').Config} */
module.exports = {
testEnvironment: 'node',
transform: { '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.jest.json' }] }
};
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
},
"scripts": {
"build": "ts-project-builder ./src/**/*.ts --clean",
"bumplog": "changelogen --bump"
"bumplog": "changelogen --bump",
"test": "jest --coverage"
},
"dependencies": {
"@noble/hashes": "^1.4.0",
Expand All @@ -25,9 +26,12 @@
"devDependencies": {
"@kikiutils/prettierrc": "^1.3.2",
"@kikiutils/tsconfigs": "^3.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"changelogen": "^0.5.5",
"hono": "^4.5.8",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-project-builder": "3.0.1"
},
"keywords": [
Expand Down
Loading

0 comments on commit 49f84e4

Please sign in to comment.