Skip to content

Commit 3a361dd

Browse files
committed
Fixed hanging tests
1 parent 9cc044e commit 3a361dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

krpc/krpc-test/src/commonMain/kotlin/kotlinx/rpc/krpc/test/KrpcTransportTestBase.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,8 +444,8 @@ abstract class KrpcTransportTestBase {
444444

445445
@Test
446446
fun rpc_continuation_is_called_in_the_correct_scope_and_doesnt_block_other_rpcs() = runTest {
447-
if (platform.isJs()) {
448-
println("Test is skipped on JS, because it doesn't support multiple threads.")
447+
if (platform.isJs() || platform == Platform.WASI) {
448+
println("Test is skipped on JS/WASM, because they don't support multiple threads.")
449449
return@runTest
450450
}
451451

0 commit comments

Comments
 (0)