diff --git a/zipline/src/jvmTest/kotlin/app/cash/zipline/ConsoleTest.kt b/zipline/src/jvmTest/kotlin/app/cash/zipline/ConsoleTest.kt index a789fb7a30..15c250700f 100644 --- a/zipline/src/jvmTest/kotlin/app/cash/zipline/ConsoleTest.kt +++ b/zipline/src/jvmTest/kotlin/app/cash/zipline/ConsoleTest.kt @@ -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 { @@ -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()