()
| 40 | }); |
| 41 | |
| 42 | const stopWsApiConnections = function () { |
| 43 | const connections = (binance as any).wsApiConnections; |
| 44 | for (const connectionId in connections) { |
| 45 | console.log('Terminated WebSocket API connection:', connectionId); |
| 46 | (binance as any).terminateWsApi(connectionId); |
| 47 | } |
| 48 | }; |
| 49 | |
| 50 | describe('Margin WebSocket API – Live Order Test', function () { |
| 51 |
no test coverage detected