Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions test/mini_racer_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -987,11 +987,17 @@ def test_promise
end

def test_perform_microtask_checkpoint_returns_nil
if RUBY_ENGINE == "truffleruby"
skip "TruffleRuby does not implement perform_microtask_checkpoint (V8-only)"
end
context = MiniRacer::Context.new
assert_nil(context.perform_microtask_checkpoint)
end

def test_perform_microtask_checkpoint_drains_from_callback
if RUBY_ENGINE == "truffleruby"
skip "TruffleRuby does not implement perform_microtask_checkpoint (V8-only)"
end
context = MiniRacer::Context.new
seen = []

Expand Down