Skip to content

Commit

Permalink
Ignore flaky ConsoleTest for now
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jan 8, 2025
1 parent 7586708 commit c3c3bdc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion zipline/src/jvmTest/kotlin/app/cash/zipline/ConsoleTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import kotlinx.coroutines.test.StandardTestDispatcher
import kotlinx.coroutines.test.runTest
import org.junit.After
import org.junit.Before
import org.junit.Ignore
import org.junit.Test

class ConsoleTest {
Expand Down Expand Up @@ -139,7 +140,9 @@ class ConsoleTest {
* Note that this test is checking our expected behavior, but our behavior falls short of what
* browsers implement. In particular, we don't do string replacement for `%s`, `%d`, etc.
*/
@Test fun logWithArguments() = runTest(dispatcher) {
@Ignore("Flaky https://github.com/cashapp/zipline/issues/1025")
@Test
fun logWithArguments() = runTest(dispatcher) {
zipline.quickJs.evaluate("testing.app.cash.zipline.testing.consoleLogWithArguments()")

val record = logRecords.receive()
Expand Down

0 comments on commit c3c3bdc

Please sign in to comment.