Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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