We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efcb3fb commit f102a9cCopy full SHA for f102a9c
src/test/controlSocket.ts
@@ -0,0 +1,13 @@
1
+import { describe, it } from 'mocha'
2
+import { ControlSocket } from '../controlSocket'
3
+import { assert } from 'chai'
4
+
5
+describe('ControlSocket', () => {
6
7
+ it('should try to get list of sockets', async () => {
8
+ const cs = new ControlSocket()
9
+ const r = await cs.listControlSockets()
10
+ assert.isArray(r)
11
+ })
12
13
+})
0 commit comments