diff --git a/wasm/wasm.tests/test/org/jetbrains/kotlin/wasm/test/handlers/WasmBoxRunner.kt b/wasm/wasm.tests/test/org/jetbrains/kotlin/wasm/test/handlers/WasmBoxRunner.kt index 11e45d5e25e..45e96de0840 100644 --- a/wasm/wasm.tests/test/org/jetbrains/kotlin/wasm/test/handlers/WasmBoxRunner.kt +++ b/wasm/wasm.tests/test/org/jetbrains/kotlin/wasm/test/handlers/WasmBoxRunner.kt @@ -117,8 +117,7 @@ class WasmBoxRunner( val disableExceptions = DISABLE_WASM_EXCEPTION_HANDLING in testServices.moduleStructure.allDirectives - // TODO: KT-61958 Update SpiderMonkey and return its usage in tests when they switch to the final opcodes for GC and FTR proposals. - val exceptions = listOf(WasmVM.V8, /*WasmVM.SpiderMonkey*/).mapNotNull { vm -> + val exceptions = listOf(WasmVM.V8, WasmVM.SpiderMonkey).mapNotNull { vm -> vm.runWithCathedExceptions( debugMode = debugMode, disableExceptions = disableExceptions,