-
Notifications
You must be signed in to change notification settings - Fork 12
Websocket Support #77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 10 commits
74901d3
0d37547
2d4ef76
b71c019
e12081c
743b55c
5a4d8d8
cdcb25a
34b0356
ce1f4e0
ea3a10f
49c0560
8df38c7
0340b2d
c7f7f4b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module.exports = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'jsdom' | ||
testEnvironment: 'jsdom', | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ | |
"removeComments": true /* Do not emit comments to output. */, | ||
"strict": true /* Enable all strict type-checking options. */, | ||
"noImplicitAny": false /* Raise error on expressions and declarations with an implied 'any' type. */, | ||
"noUnusedLocals": true /* Report errors on unused locals. */, | ||
"noUnusedParameters": true /* Report errors on unused parameters. */, | ||
"noUnusedLocals": false /* Report errors on unused locals. */, | ||
"noUnusedParameters": false /* Report errors on unused parameters. */, | ||
|
||
"lib": ["es2017", "dom"], | ||
"esModuleInterop": true | ||
}, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also write usage
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you fix this up?