From 1557c588e7a8904af1b5bebc3b0f5f93a07c8c64 Mon Sep 17 00:00:00 2001 From: Lahiru Maramba Date: Tue, 22 Oct 2024 20:26:54 +0000 Subject: [PATCH] chore: Skip integration tests for deprecated FCM APIs --- integration/messaging/messaging_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integration/messaging/messaging_test.go b/integration/messaging/messaging_test.go index 85b475ae..e32aac9d 100644 --- a/integration/messaging/messaging_test.go +++ b/integration/messaging/messaging_test.go @@ -230,6 +230,7 @@ func TestSendEachForMulticast(t *testing.T) { } func TestSendAll(t *testing.T) { + t.Skip("Skipping integration tests for deprecated sendAll() API") messages := []*messaging.Message{ { Notification: &messaging.Notification{ @@ -289,6 +290,7 @@ func TestSendAll(t *testing.T) { } func TestSendFiveHundred(t *testing.T) { + t.Skip("Skipping integration tests for deprecated sendAll() API") var messages []*messaging.Message const limit = 500 for i := 0; i < limit; i++ { @@ -322,6 +324,7 @@ func TestSendFiveHundred(t *testing.T) { } func TestSendMulticast(t *testing.T) { + t.Skip("Skipping integration tests for deprecated SendMulticast() API") message := &messaging.MulticastMessage{ Notification: &messaging.Notification{ Title: "title",