Skip to content

Commit

Permalink
Remove redundant InstrumentedTest
Browse files Browse the repository at this point in the history
  • Loading branch information
bitPogo committed Feb 23, 2024
1 parent 5bfa7c8 commit 21d76f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package tech.antibytes.kmock.integration
import co.touchlab.stately.concurrency.AtomicReference
import kotlin.js.JsName
import kotlin.test.BeforeTest
import kotlin.test.Ignore
import kotlin.test.Test
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.ExperimentalCoroutinesApi
Expand Down Expand Up @@ -43,7 +44,6 @@ import tech.antibytes.kmock.verification.asyncVerifyOrder
import tech.antibytes.kmock.verification.verify
import tech.antibytes.kmock.verification.verifyOrder
import tech.antibytes.util.test.annotations.IgnoreJs
import tech.antibytes.util.test.annotations.IgnoreNative
import tech.antibytes.util.test.coroutine.clearBlockingTest
import tech.antibytes.util.test.coroutine.defaultScheduler
import tech.antibytes.util.test.fulfils
Expand Down Expand Up @@ -139,7 +139,7 @@ class SampleControllerAlternativeAccessSpec {
@OptIn(ExperimentalCoroutinesApi::class)
@Test
@JsName("fn2")
@IgnoreNative
@Ignore
fun `Given find it fetches a DomainObjects`() = runTest {
// Given
val idOrg = fixture.fixture<String>()
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ package tech.antibytes.kmock.example
import co.touchlab.stately.concurrency.AtomicReference
import kotlin.js.JsName
import kotlin.test.BeforeTest
import kotlin.test.Ignore
import kotlin.test.Test
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.delay
Expand Down Expand Up @@ -41,7 +42,6 @@ import tech.antibytes.kmock.verification.asyncVerifyOrder
import tech.antibytes.kmock.verification.verify
import tech.antibytes.kmock.verification.verifyOrder
import tech.antibytes.util.test.annotations.IgnoreJs
import tech.antibytes.util.test.annotations.IgnoreNative
import tech.antibytes.util.test.coroutine.AsyncTestReturnValue
import tech.antibytes.util.test.coroutine.clearBlockingTest
import tech.antibytes.util.test.coroutine.defaultScheduler
Expand Down Expand Up @@ -99,7 +99,7 @@ class SampleControllerAlternativeAccessSpec {
}

@Test
@IgnoreNative
@Ignore
@JsName("fn1")
fun `Given fetchAndStore it fetches and stores DomainObjects`() = runTest {
// Given
Expand Down

0 comments on commit 21d76f0

Please sign in to comment.