summary refs log tree commit diff
path: root/api/package.json
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-17 23:42:40 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-17 23:42:40 +0200
commit859fdd679b2f42ae4fd90b3a1a7958370fcdccb8 (patch)
tree6b65ca26539f3b8fab03b4b179762765188c1fb7 /api/package.json
parent:bug: fix vanity url (diff)
downloadserver-859fdd679b2f42ae4fd90b3a1a7958370fcdccb8.tar.xz
:bug: fix body parse treating null not as undefined (except for icons/avatars)
Diffstat (limited to 'api/package.json')
-rw-r--r--api/package.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/api/package.json b/api/package.json

index d93a6269..ad959e57 100644 --- a/api/package.json +++ b/api/package.json
@@ -5,7 +5,8 @@ "main": "dist/Server.js", "types": "dist/Server.d.ts", "scripts": { - "test": "npm run build && jest --coverage --verbose --forceExit ./tests", + "test:only": "node -r ./scripts/tsconfig-paths-bootstrap.js node_modules/.bin/jest --coverage --verbose --forceExit ./tests", + "test": "npm run build && npm run test:only", "test:watch": "jest --watch", "start": "npm run build && node -r ./scripts/tsconfig-paths-bootstrap.js dist/start", "build": "npx tsc -b .",