• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 import org.jetbrains.kotlin.gradle.plugin.mpp.*
2 import org.jetbrains.kotlin.gradle.targets.js.dsl.*
3 
<lambda>null4 kotlin {
5     sourceSets {
6         jvmTest {
7             dependencies {
8                 implementation(project(":kotlinx-coroutines-debug"))
9             }
10         }
11     }
12 
13     @OptIn(ExperimentalWasmDsl::class)
14     wasmJs {
15         nodejs {
16             testTask {
17                 filter.apply {
18                     // https://youtrack.jetbrains.com/issue/KT-61888
19                     excludeTest("TestDispatchersTest", "testMainMocking")
20                 }
21             }
22         }
23     }
24 }
25