Skip to content

Commit

Permalink
add test exit 0
Browse files Browse the repository at this point in the history
Signed-off-by: James Struga <[email protected]>
  • Loading branch information
James Struga committed Feb 10, 2023
1 parent cfd4208 commit bfd2ddf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion nodeServer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "Hello World message",
"scripts": {
"build": "tsc",
"start": "tsc --watch"
"start": "tsc --watch",
"test": "exit 0"
},
"dependencies": {},
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion webClient/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"start": "webpack --progress --colors --watch",
"build": "webpack --progress --colors",
"i18n": "ng-xi18n -p tsconfig.i18n.json --i18nFormat=xlf --outFile=messages.xlf && xliffmerge -p xliffmerge.json",
"lint": "tslint -c tslint.json \"./**/*.ts\""
"lint": "tslint -c tslint.json \"./**/*.ts\"",
"test": "exit 0"
},
"private": true,
"devDependencies": {
Expand Down

0 comments on commit bfd2ddf

Please sign in to comment.