We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cc044e commit 3a361ddCopy full SHA for 3a361dd
krpc/krpc-test/src/commonMain/kotlin/kotlinx/rpc/krpc/test/KrpcTransportTestBase.kt
@@ -444,8 +444,8 @@ abstract class KrpcTransportTestBase {
444
445
@Test
446
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.")
+ if (platform.isJs() || platform == Platform.WASI) {
+ println("Test is skipped on JS/WASM, because they don't support multiple threads.")
449
return@runTest
450
}
451
0 commit comments