Skip to content

Commit 5bb1b5a

Browse files
author
kele-leanes
committed
Remove @ignore annotations from GroupTest
1 parent 5050c30 commit 5bb1b5a

File tree

1 file changed

+0
-13
lines changed
  • library/src/androidTest/java/org/xmtp/android/library

1 file changed

+0
-13
lines changed

library/src/androidTest/java/org/xmtp/android/library/GroupTest.kt

-13
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import kotlinx.coroutines.runBlocking
77
import org.junit.Assert.assertEquals
88
import org.junit.Assert.assertThrows
99
import org.junit.Before
10-
import org.junit.Ignore
1110
import org.junit.Test
1211
import org.junit.runner.RunWith
1312
import org.xmtp.android.library.codecs.ContentTypeReaction
@@ -136,7 +135,6 @@ class GroupTest {
136135
}
137136

138137
@Test
139-
@Ignore("CI Issues")
140138
fun testCanListGroupMembers() {
141139
val group = boClient.conversations.newGroup(
142140
listOf(
@@ -163,7 +161,6 @@ class GroupTest {
163161
}
164162

165163
@Test
166-
@Ignore("CI Issues")
167164
fun testCanAddGroupMembers() {
168165
val group = boClient.conversations.newGroup(listOf(alix.walletAddress))
169166
group.addMembers(listOf(caro.walletAddress))
@@ -178,7 +175,6 @@ class GroupTest {
178175
}
179176

180177
@Test
181-
@Ignore("CI Issues")
182178
fun testCanRemoveGroupMembers() {
183179
val group = boClient.conversations.newGroup(
184180
listOf(
@@ -197,7 +193,6 @@ class GroupTest {
197193
}
198194

199195
@Test
200-
@Ignore("CI Issues")
201196
fun testCanRemoveGroupMembersWhenNotCreator() {
202197
boClient.conversations.newGroup(
203198
listOf(
@@ -218,7 +213,6 @@ class GroupTest {
218213
}
219214

220215
@Test
221-
@Ignore("CI Issues")
222216
fun testIsActiveReturnsCorrectly() {
223217
val group = boClient.conversations.newGroup(
224218
listOf(
@@ -238,7 +232,6 @@ class GroupTest {
238232
}
239233

240234
@Test
241-
@Ignore("CI Issues")
242235
fun testCanListGroups() {
243236
boClient.conversations.newGroup(listOf(alix.walletAddress))
244237
boClient.conversations.newGroup(listOf(caro.walletAddress))
@@ -247,7 +240,6 @@ class GroupTest {
247240
}
248241

249242
@Test
250-
@Ignore("CI Issues")
251243
fun testCanListGroupsAndConversations() {
252244
boClient.conversations.newGroup(listOf(alix.walletAddress))
253245
boClient.conversations.newGroup(listOf(caro.walletAddress))
@@ -269,15 +261,13 @@ class GroupTest {
269261
}
270262

271263
@Test
272-
@Ignore("CI Issues")
273264
fun testCannotStartGroupWithSelf() {
274265
assertThrows("Recipient is sender", XMTPException::class.java) {
275266
boClient.conversations.newGroup(listOf(bo.walletAddress))
276267
}
277268
}
278269

279270
@Test
280-
@Ignore("CI Issues")
281271
fun testCannotStartEmptyGroupChat() {
282272
assertThrows("Cannot start an empty group chat.", XMTPException::class.java) {
283273
boClient.conversations.newGroup(listOf())
@@ -311,7 +301,6 @@ class GroupTest {
311301
}
312302

313303
@Test
314-
@Ignore("CI Issues")
315304
fun testCanSendContentTypesToGroup() {
316305
Client.register(codec = ReactionCodec())
317306

@@ -340,7 +329,6 @@ class GroupTest {
340329
}
341330

342331
@Test
343-
@Ignore("CI Issues")
344332
fun testCanStreamGroupMessages() = kotlinx.coroutines.test.runTest {
345333
val group = boClient.conversations.newGroup(listOf(alix.walletAddress.lowercase()))
346334
alixClient.conversations.syncGroups()
@@ -429,7 +417,6 @@ class GroupTest {
429417
}
430418

431419
@Test
432-
@Ignore("CI Issues")
433420
fun testCanStreamGroupsAndConversations() = kotlinx.coroutines.test.runTest {
434421
boClient.conversations.streamAll().test {
435422
val group =

0 commit comments

Comments
 (0)