Skip to content

Commit

Permalink
chore: Skip integration tests for deprecated FCM APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
lahirumaramba committed Oct 22, 2024
1 parent e69dcb0 commit 1557c58
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions integration/messaging/messaging_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down Expand Up @@ -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++ {
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 1557c58

Please sign in to comment.