summary refs log tree commit diff
path: root/api/package.json
diff options
context:
space:
mode:
authorAlTech98 <altech123159@gmail.com>2021-09-18 08:03:52 +0200
committerGitHub <noreply@github.com>2021-09-18 08:03:52 +0200
commit2580f6b89116ee69de1f6485eef73563a26414cd (patch)
treebd90b3af6318613d54644b828e3ff8cb59811a78 /api/package.json
parentFix icon, owner_id change and channel deletion for group DMs (diff)
parent:bug: fix body parse treating null not as undefined (except for icons/avatars) (diff)
downloadserver-ts-2580f6b89116ee69de1f6485eef73563a26414cd.tar.xz
Merge branch 'fosscord:master' into fix-dm
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 .",