From 7538f1a5318809dbaa73dee06575cd432d96e4f8 Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Wed, 13 Sep 2023 10:49:33 -0700 Subject: [PATCH] Enable Group Experiment in Main Test --- testing/cwtch_peer_server_integration_test.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/testing/cwtch_peer_server_integration_test.go b/testing/cwtch_peer_server_integration_test.go index 6ec206f..4f919c3 100644 --- a/testing/cwtch_peer_server_integration_test.go +++ b/testing/cwtch_peer_server_integration_test.go @@ -150,6 +150,12 @@ func TestCwtchPeerIntegration(t *testing.T) { numGoRoutinesPostAppStart := runtime.NumGoroutine() // ***** cwtchPeer setup ***** + // Turn on File Sharing Experiment... + settings := app.ReadSettings() + settings.ExperimentsEnabled = true + settings.Experiments[constants.GroupsExperiment] = true + app.UpdateSettings(settings) + log.Infoln("Creating Alice...") app.CreateProfile("Alice", "asdfasdf", true)