diff --git a/testing/cwtch_peer_server_intergration_test.go b/testing/cwtch_peer_server_intergration_test.go index 8cbf345..61380d8 100644 --- a/testing/cwtch_peer_server_intergration_test.go +++ b/testing/cwtch_peer_server_intergration_test.go @@ -66,6 +66,10 @@ func TestCwtchPeerIntegration(t *testing.T) { fmt.Println("Bob joining group...") bob.JoinServer(server_addr) + // Associate and peer alice & bob + alice.Profile.AddContact(bob.Profile.Onion, bob.Profile.PublicProfile) + bob.Profile.AddContact(alice.Profile.Onion, alice.Profile.PublicProfile) + fmt.Println("Alice> ", aliceLines[0]) alice.SendMessageToGroup(groupId, aliceLines[0]) time.Sleep(time.Second * 2)