Skip to content

Commit bbd5162

Browse files
chore: Skip integration tests for deprecated FCM APIs (#646)
1 parent e69dcb0 commit bbd5162

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

integration/messaging/messaging_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ func TestSendEachForMulticast(t *testing.T) {
230230
}
231231

232232
func TestSendAll(t *testing.T) {
233+
t.Skip("Skipping integration tests for deprecated sendAll() API")
233234
messages := []*messaging.Message{
234235
{
235236
Notification: &messaging.Notification{
@@ -289,6 +290,7 @@ func TestSendAll(t *testing.T) {
289290
}
290291

291292
func TestSendFiveHundred(t *testing.T) {
293+
t.Skip("Skipping integration tests for deprecated sendAll() API")
292294
var messages []*messaging.Message
293295
const limit = 500
294296
for i := 0; i < limit; i++ {
@@ -322,6 +324,7 @@ func TestSendFiveHundred(t *testing.T) {
322324
}
323325

324326
func TestSendMulticast(t *testing.T) {
327+
t.Skip("Skipping integration tests for deprecated SendMulticast() API")
325328
message := &messaging.MulticastMessage{
326329
Notification: &messaging.Notification{
327330
Title: "title",

0 commit comments

Comments
 (0)