Add test coverage to TS Client tests (#2409)

This commit is contained in:
BrennanConroy 2018-05-31 08:47:33 -07:00 committed by GitHub
parent 30a59f6df7
commit f309c303db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

1
.gitignore vendored
View File

@ -55,3 +55,4 @@ ipch/
*.aps *.aps
*.opendb *.opendb
*.db *.db
coverage/

View File

@ -5,7 +5,8 @@
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"build": "cd ./signalr && npm run build && cd ../signalr-protocol-msgpack && npm run build", "build": "cd ./signalr && npm run build && cd ../signalr-protocol-msgpack && npm run build",
"test": "jest" "test": "jest",
"coverage": "jest --coverage"
}, },
"author": "Microsoft", "author": "Microsoft",
"license": "Apache-2.0", "license": "Apache-2.0",