Skip to content

Commit 22ae7e6

Browse files
committed
squash! disable test on truffleruby
1 parent 141031c commit 22ae7e6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/mini_racer_test.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1150,6 +1150,9 @@ def test_termination_exception
11501150
end
11511151

11521152
def test_ruby_exception
1153+
if RUBY_ENGINE == "truffleruby"
1154+
skip "TruffleRuby doesn't return JS exceptions as dictionaries"
1155+
end
11531156
context = MiniRacer::Context.new
11541157
context.attach("test", proc { raise "boom" })
11551158
actual = context.eval("try { test() } catch (e) { e }")

0 commit comments

Comments
 (0)