diff --git a/server/channels/api4/channel_bookmark_test.go b/server/channels/api4/channel_bookmark_test.go index 531537481f..c96e6d0024 100644 --- a/server/channels/api4/channel_bookmark_test.go +++ b/server/channels/api4/channel_bookmark_test.go @@ -221,6 +221,8 @@ func TestCreateChannelBookmark(t *testing.T) { }) t.Run("a websockets event should be fired as part of creating a bookmark", func(t *testing.T) { + t.Skip("MM-62437") + webSocketClient, err := th.CreateWebSocketClient() require.NoError(t, err) require.NotNil(t, webSocketClient, "webSocketClient should not be nil") diff --git a/server/channels/app/imports/import_validators_test.go b/server/channels/app/imports/import_validators_test.go index c45644823c..6729b030cf 100644 --- a/server/channels/app/imports/import_validators_test.go +++ b/server/channels/app/imports/import_validators_test.go @@ -1039,6 +1039,8 @@ func TestImportValidatePostImportData(t *testing.T) { }) t.Run("Test with valid all optional parameters", func(t *testing.T) { + t.Skip("MM-62440") + reactions := []ReactionImportData{{ User: model.NewPointer("username"), EmojiName: model.NewPointer("emoji"), diff --git a/server/channels/app/platform/log_test.go b/server/channels/app/platform/log_test.go index 831144ddd3..fed038c977 100644 --- a/server/channels/app/platform/log_test.go +++ b/server/channels/app/platform/log_test.go @@ -14,6 +14,8 @@ import ( ) func TestGetMattermostLog(t *testing.T) { + t.Skip("MM-62438") + th := Setup(t) defer th.TearDown()