From 7e9db28201b4396ec35fddb8e210c91405c90d05 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Sat, 30 Oct 2021 22:27:42 +0100 Subject: [PATCH] disable transport test --- packages/simplexmq_io/test/transport_test.dart | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/packages/simplexmq_io/test/transport_test.dart b/packages/simplexmq_io/test/transport_test.dart index 65314827a8..b4d7ddadef 100644 --- a/packages/simplexmq_io/test/transport_test.dart +++ b/packages/simplexmq_io/test/transport_test.dart @@ -21,19 +21,18 @@ void main() { final aliceMessages = alice.messageStream(); final aliceKeys = generateRSAkeyPair(); final rcvKeyBytes = encodeRsaPubKey(aliceKeys.publicKey); + // input stream is not processed without the call to listen() + aliceMessages.listen((_) {}); // final conn2 = await SocketTransport.connect('localhost', 5223); // final bob = await SMPTransportClient.connect(conn2, keyHash: keyHash); // final bobKeys = generateRSAkeyPair(); // final sndKeyStr = encode64(encodeRsaPubKey(bobKeys.publicKey)); - // input stream is not processed without this listen - aliceMessages.listen((_) {}); - final resp = await alice.sendSMPCommand( aliceKeys.privateKey, empty, NEW(rcvKeyBytes)); expect(resp.command is IDS, true); }); - }); - // }, skip: 'requires SMP server on port 5223'); + // }); + }, skip: 'requires SMP server on port 5223'); }