test/test_sound_player.rb in beeps-0.2 vs test/test_sound_player.rb in beeps-0.2.1
- old
+ new
@@ -52,9 +52,13 @@
p.stop
assert_equal :stopped, p.state
end
def test_play_end_then_stop()
+ # FIXME: not tested because it fails due to GHA's "Null Audio Device".
+ # https://github.com/xord/beeps/actions/runs/9044146493/job/24852497305
+ return if github_actions?
+
s = sound
sec = s.seconds
p = s.play
assert_equal :playing, p.state