We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96610ad commit 533811dCopy full SHA for 533811d
kotlinx-coroutines-core/common/test/TestBase.common.kt
@@ -14,6 +14,13 @@ public expect val isStressTest: Boolean
14
public expect val stressTestMultiplier: Int
15
16
public expect open class TestBase constructor() {
17
+ /*
18
+ * In common tests we emulate parameterized tests
19
+ * by iterating over parameters space in the single @Test method.
20
+ * This kind of tests is too slow for JS and does not fit into
21
+ * the default Mocha timeout, so we're using this flag to bail-out
22
+ * and run such tests only on JVM and K/N.
23
+ */
24
public val isBoundByJsTestTimeout: Boolean
25
public fun error(message: Any, cause: Throwable? = null): Nothing
26
public fun expect(index: Int)
0 commit comments