Skip to content

Commit

Permalink
remove test for removed feature
Browse files Browse the repository at this point in the history
  • Loading branch information
ElectronicBlueberry committed Nov 25, 2024
1 parent 4f7dd00 commit 6c3b2ce
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions lib/galaxy_test/selenium/test_workflow_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
)
from .framework import (
retry_assertion_during_transitions,
retry_during_transitions,
RunsWorkflows,
selenium_test,
SeleniumTestCase,
Expand Down Expand Up @@ -878,29 +877,6 @@ def test_missing_tools(self):
self.assert_modal_has_text("Tool is not installed")
self.screenshot("workflow_editor_missing_tool")

@selenium_test
def test_workflow_bookmarking(self):
@retry_during_transitions
def assert_workflow_bookmarked_status(target_status):
name_matches = [c.text == new_workflow_name for c in self.components.tool_panel.workflow_names.all()]
status = any(name_matches)
assert status == target_status

new_workflow_name = self.workflow_create_new(clear_placeholder=True)
self.components.workflow_editor.canvas_body.wait_for_visible()
self.wait_for_selector_absent_or_hidden(self.modal_body_selector())

# Assert workflow not initially bookmarked.
self.navigate_to_tools()
assert_workflow_bookmarked_status(False)

self.click_activity_workflow()
self.components.workflows.bookmark_link(action="add").wait_for_and_click()

# search for bookmark in tools menu
self.navigate_to_tools()
assert_workflow_bookmarked_status(True)

def tab_to(self, accessible_name, direction="forward"):
for _ in range(100):
ac = self.action_chains()
Expand Down

0 comments on commit 6c3b2ce

Please sign in to comment.