v1.0.5
This commit is contained in:
parent
72bf84d8fa
commit
fc1817caa5
10 changed files with 42 additions and 16 deletions
|
|
@ -351,7 +351,7 @@ class TestInitialization:
|
|||
mcpCapabilities=McpCapabilities(http=False, sse=False),
|
||||
)
|
||||
assert response.result.agentInfo == Implementation(
|
||||
name="@mistralai/mistral-vibe", title="Mistral Vibe", version="1.0.4"
|
||||
name="@mistralai/mistral-vibe", title="Mistral Vibe", version="1.0.5"
|
||||
)
|
||||
vibe_setup_method = next(
|
||||
(
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ def default_config() -> VibeConfig:
|
|||
textual_theme="gruvbox",
|
||||
disable_welcome_banner_animation=True,
|
||||
displayed_workdir="/test/workdir",
|
||||
enable_update_checks=False,
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue