This commit is contained in:
Vincent G 2025-12-09 21:46:38 +01:00
parent 72bf84d8fa
commit fc1817caa5
10 changed files with 42 additions and 16 deletions

View file

@ -23,6 +23,7 @@ def default_config() -> VibeConfig:
textual_theme="gruvbox",
disable_welcome_banner_animation=True,
displayed_workdir="/test/workdir",
enable_update_checks=False,
)

View file

@ -14,7 +14,11 @@ class SnapshotTestAppWithUpdate(BaseSnapshotTestApp):
version_update_notifier = FakeVersionUpdateGateway(
update=VersionUpdate(latest_version="1000.2.0")
)
super().__init__(config=config, version_update_notifier=version_update_notifier)
super().__init__(
config=config,
version_update_notifier=version_update_notifier,
current_version="1.0.4",
)
def test_snapshot_shows_release_update_notification(snap_compare: SnapCompare) -> None: