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 839e14b commit 91ed69eCopy full SHA for 91ed69e
packages/client/lib/client/index.spec.ts
@@ -388,10 +388,11 @@ describe('Client', () => {
388
): Promise<void> {
389
const onceErrorPromise = once(errorClient, 'error');
390
await client.sendCommand(['QUIT']);
391
- await Promise.all([
392
- onceErrorPromise,
393
- assert.rejects(client.ping(), SocketClosedUnexpectedlyError)
394
- ]);
+ await onceErrorPromise;
+// await Promise.all([
+// onceErrorPromise,
+// assert.rejects(client.ping(), SocketClosedUnexpectedlyError)
395
+// ]);
396
}
397
398
testUtils.testWithClient('should reconnect when socket disconnects', async client => {
0 commit comments