@@ -7,7 +7,6 @@ import kotlinx.coroutines.runBlocking
7
7
import org.junit.Assert.assertEquals
8
8
import org.junit.Assert.assertThrows
9
9
import org.junit.Before
10
- import org.junit.Ignore
11
10
import org.junit.Test
12
11
import org.junit.runner.RunWith
13
12
import org.xmtp.android.library.codecs.ContentTypeReaction
@@ -136,7 +135,6 @@ class GroupTest {
136
135
}
137
136
138
137
@Test
139
- @Ignore(" CI Issues" )
140
138
fun testCanListGroupMembers () {
141
139
val group = boClient.conversations.newGroup(
142
140
listOf (
@@ -163,7 +161,6 @@ class GroupTest {
163
161
}
164
162
165
163
@Test
166
- @Ignore(" CI Issues" )
167
164
fun testCanAddGroupMembers () {
168
165
val group = boClient.conversations.newGroup(listOf (alix.walletAddress))
169
166
group.addMembers(listOf (caro.walletAddress))
@@ -178,7 +175,6 @@ class GroupTest {
178
175
}
179
176
180
177
@Test
181
- @Ignore(" CI Issues" )
182
178
fun testCanRemoveGroupMembers () {
183
179
val group = boClient.conversations.newGroup(
184
180
listOf (
@@ -197,7 +193,6 @@ class GroupTest {
197
193
}
198
194
199
195
@Test
200
- @Ignore(" CI Issues" )
201
196
fun testCanRemoveGroupMembersWhenNotCreator () {
202
197
boClient.conversations.newGroup(
203
198
listOf (
@@ -218,7 +213,6 @@ class GroupTest {
218
213
}
219
214
220
215
@Test
221
- @Ignore(" CI Issues" )
222
216
fun testIsActiveReturnsCorrectly () {
223
217
val group = boClient.conversations.newGroup(
224
218
listOf (
@@ -238,7 +232,6 @@ class GroupTest {
238
232
}
239
233
240
234
@Test
241
- @Ignore(" CI Issues" )
242
235
fun testCanListGroups () {
243
236
boClient.conversations.newGroup(listOf (alix.walletAddress))
244
237
boClient.conversations.newGroup(listOf (caro.walletAddress))
@@ -247,7 +240,6 @@ class GroupTest {
247
240
}
248
241
249
242
@Test
250
- @Ignore(" CI Issues" )
251
243
fun testCanListGroupsAndConversations () {
252
244
boClient.conversations.newGroup(listOf (alix.walletAddress))
253
245
boClient.conversations.newGroup(listOf (caro.walletAddress))
@@ -269,15 +261,13 @@ class GroupTest {
269
261
}
270
262
271
263
@Test
272
- @Ignore(" CI Issues" )
273
264
fun testCannotStartGroupWithSelf () {
274
265
assertThrows(" Recipient is sender" , XMTPException ::class .java) {
275
266
boClient.conversations.newGroup(listOf (bo.walletAddress))
276
267
}
277
268
}
278
269
279
270
@Test
280
- @Ignore(" CI Issues" )
281
271
fun testCannotStartEmptyGroupChat () {
282
272
assertThrows(" Cannot start an empty group chat." , XMTPException ::class .java) {
283
273
boClient.conversations.newGroup(listOf ())
@@ -311,7 +301,6 @@ class GroupTest {
311
301
}
312
302
313
303
@Test
314
- @Ignore(" CI Issues" )
315
304
fun testCanSendContentTypesToGroup () {
316
305
Client .register(codec = ReactionCodec ())
317
306
@@ -340,7 +329,6 @@ class GroupTest {
340
329
}
341
330
342
331
@Test
343
- @Ignore(" CI Issues" )
344
332
fun testCanStreamGroupMessages () = kotlinx.coroutines.test.runTest {
345
333
val group = boClient.conversations.newGroup(listOf (alix.walletAddress.lowercase()))
346
334
alixClient.conversations.syncGroups()
@@ -429,7 +417,6 @@ class GroupTest {
429
417
}
430
418
431
419
@Test
432
- @Ignore(" CI Issues" )
433
420
fun testCanStreamGroupsAndConversations () = kotlinx.coroutines.test.runTest {
434
421
boClient.conversations.streamAll().test {
435
422
val group =
0 commit comments