Skip to content

Commit

Permalink
disable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kneth committed Aug 20, 2024
1 parent 4ae95dc commit a2b5996
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ import kotlinx.coroutines.delay
import org.mongodb.kbson.ObjectId
import kotlin.test.AfterTest
import kotlin.test.BeforeTest
import kotlin.test.Ignore
import kotlin.test.Test
import kotlin.test.assertEquals
import kotlin.test.assertFailsWith
Expand Down Expand Up @@ -241,6 +242,8 @@ class AsymmetricSyncTests {

// Verify that a schema of Asymmetric -> Embedded -> RealmObject work.
@Test
@Ignore
// See https://github.com/realm/realm-kotlin/issues/1823
fun asymmetricSchema() = runBlocking {
config = SyncConfiguration.Builder(
app.login(Credentials.anonymous()),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ class SubscriptionExtensionsTests {
}

@Test
@Ignore
// See https://github.com/realm/realm-kotlin/issues/1823
fun realmQuery_subscribe_waitNever() = runBlocking {
// Un-named
realm.query<FlexParentObject>().subscribe(mode = WaitForSync.NEVER)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import kotlinx.coroutines.delay
import kotlinx.datetime.Clock
import kotlin.test.AfterTest
import kotlin.test.BeforeTest
import kotlin.test.Ignore
import kotlin.test.Test
import kotlin.test.assertEquals
import kotlin.test.assertFailsWith
Expand Down Expand Up @@ -127,6 +128,8 @@ class SubscriptionTests {
}

@Test
@Ignore
// See https://github.com/realm/realm-kotlin/issues/1823
fun asQuery() = runBlocking {
val sub: Subscription = realm.subscriptions.update { realm ->
add(realm.query<ParentPk>("name = $0", "my-name"))
Expand Down

0 comments on commit a2b5996

Please sign in to comment.