Skip to content

Commit

Permalink
chore: disable flaky test (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
pklawikowski-schibsted authored Aug 29, 2024
1 parent 0c1b33e commit 793d08b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class BestEffortRunOnceTaskTest {
}

@Test
@Ignore("This test is flaky")
fun runOnlyExecutesOperationOnce() {
val opMock = mockk<TestOperation<String>> {
every { doWork() } returnsMany listOf("First result", "Second result")
Expand All @@ -49,7 +50,7 @@ class BestEffortRunOnceTaskTest {
}

@Test
@Ignore
@Ignore("This test is flaky")
fun runDoesNotRepeatOperationIfLockTimesOut() {
val results = listOf(
"First result",
Expand Down

0 comments on commit 793d08b

Please sign in to comment.