We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1e314a commit 707c6c8Copy full SHA for 707c6c8
formats/json-tests/commonTest/src/kotlinx/serialization/json/JsonTestBase.kt
@@ -138,6 +138,8 @@ abstract class JsonTestBase {
138
add(runCatching { test(JsonTestingMode.TREE) })
139
add(runCatching { test(JsonTestingMode.OKIO_STREAMS) })
140
add(runCatching { test(JsonTestingMode.KXIO_STREAMS) })
141
+ add(runCatching { test(JsonTestingMode.EFFICIENT_BINARY) }
142
+ .recover { e -> if ("Json format" in (e.message ?: "")) Unit else throw e })
143
144
if (isJvm()) {
145
add(runCatching { test(JsonTestingMode.JAVA_STREAMS) })
0 commit comments