Skip to content

Commit

Permalink
tests[Op#56284]: cover test case for edit
Browse files Browse the repository at this point in the history
  • Loading branch information
akabiru committed Aug 8, 2024
1 parent e9f8721 commit 4c2dfa4
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,19 @@

expect(page).to have_text(project.name)
expect(page).to have_text(subproject.name)

aggregate_failures "can edit the project folder" do
project_storages_index_page.click_menu_item_of("Edit project folder", project)

within("dialog") do
choose "No specific folder"
click_on "Save"
end

project_storages_index_page.within_the_table_row_containing(project.name) do
expect(page).to have_text("No specific folder")
end
end
end

context "when the user does not select a folder" do
Expand Down

0 comments on commit 4c2dfa4

Please sign in to comment.