fix: add zoom level functionality to BecConsole and related tests

This commit is contained in:
2026-07-07 15:05:44 +02:00
committed by wakonig_k
parent e530cbaa41
commit 6d08f02d64
3 changed files with 139 additions and 1 deletions
+7 -1
View File
@@ -104,7 +104,13 @@ class TestDeveloperViewInitialization:
# Check for expected toolbar actions
toolbar_components = developer_view.toolbar.components
expected_actions = ["save", "save_as", "run", "stop", "vim"]
expected_actions = [
"save",
"save_as",
"run",
"stop",
"vim",
]
for action_name in expected_actions:
assert toolbar_components.exists(action_name)