File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
js/js.tests/testFixtures/org/jetbrains/kotlin/js/test/ir
wasm/wasm.tests/testFixtures/org/jetbrains/kotlin/wasm/test Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import org.jetbrains.kotlin.klib.KlibCompilerInvocationTestUtils.MAIN_MODULE_NAM
2020import org.jetbrains.kotlin.test.TargetBackend
2121import org.jetbrains.kotlin.utils.mapToSetOrEmpty
2222import org.junit.jupiter.api.AfterEach
23+ import org.junit.jupiter.api.Assumptions
2324import java.io.ByteArrayOutputStream
2425import java.io.File
2526import java.io.PrintStream
@@ -74,7 +75,7 @@ internal class JsCompilerInvocationTestConfiguration(
7475 override val targetBackend get() = if (compilerType.es6Mode) TargetBackend .JS_IR_ES6 else TargetBackend .JS_IR
7576
7677 override fun onIgnoredTest () {
77- /* Do nothing specific. JUnit 3 does not support programmatic tests muting. */
78+ Assumptions .abort< Unit >()
7879 }
7980}
8081
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ import org.jetbrains.kotlin.test.TargetBackend
2121import org.jetbrains.kotlin.wasm.test.AbstractWasmPartialLinkageTestCase.CompilerType
2222import org.jetbrains.kotlin.wasm.test.tools.WasmVM
2323import org.junit.jupiter.api.AfterEach
24+ import org.junit.jupiter.api.Assumptions
2425import java.io.ByteArrayOutputStream
2526import java.io.File
2627import java.io.PrintStream
@@ -68,7 +69,7 @@ internal class WasmCompilerInvocationTestConfiguration(
6869
6970
7071 override fun onIgnoredTest () {
71- /* Do nothing specific. JUnit 3 does not support programmatic tests muting. */
72+ Assumptions .abort< Unit >()
7273 }
7374}
7475
You can’t perform that action at this time.
0 commit comments