Skip to content

Commit

Permalink
Add test scripts to package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
sinanptm committed Aug 15, 2024
1 parent 2ff3d82 commit 8438a21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"test": "echo \"No tests specified\" && exit 0"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
Expand Down
3 changes: 2 additions & 1 deletion server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"build": "tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"serve": "concurrently \"tsc -w\" \"nodemon dist/index.js\""
"serve": "concurrently \"tsc -w\" \"nodemon dist/index.js\"",
"test": "echo \"No tests specified\" && exit 0"
},
"keywords": [],
"author": "",
Expand Down

0 comments on commit 8438a21

Please sign in to comment.