fix(lib): pass skip argument to ManimCE (#524)

* fix(lib): pass skip argument to ManimCE

* fix(lint): make ruff happy
This commit is contained in:
Jérome Eertmans
2025-01-22 21:41:22 +01:00
committed by GitHub
parent 941b895083
commit dbced6e62e
5 changed files with 17 additions and 8 deletions

View File

@ -87,13 +87,13 @@ class TestBaseSlide:
assert base_slide.wait_time_between_slides == 0.0
def test_skip_animations(self, base_slide: BaseSlide) -> None:
assert base_slide._skip_animations == False
assert not base_slide._skip_animations
def test_start_and_stop_skip_animations(self, base_slide: BaseSlide) -> None:
base_slide.start_skip_animations()
assert base_slide._skip_animations == True
assert base_slide._skip_animations
base_slide.stop_skip_animations()
assert base_slide._skip_animations == False
assert not base_slide._skip_animations
def test_play(self) -> None:
pass # This method should be tested in test_slide.py