Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: remove broken steps from files acceptance test #39778

Merged
merged 1 commit into from
Aug 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions tests/acceptance/features/app-files.feature
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,14 @@ Feature: app-files
And I see that the details view is closed
And I open the "Recent" section
And I see that the current section is "Recent"
And I open the details view for "welcome.txt"
And I see that the details view is open
And I close the details view
And I see that the details view is closed
# The acceptance tests using the recent view fail since the vue migration.
# The step is looking for a row in the filelist with a span having the class nametext, matching the
# file name "welcome.txt" and button inside having the class action-menu. The markup for the files list
# looks very different after the vue migration and therefor the test is failing.
#And I open the details view for "welcome.txt"
#And I see that the details view is open
#And I close the details view
#And I see that the details view is closed
When I open the "All files" section
And I see that the current section is "All files"
And I open the details view for "welcome.txt"
Expand Down
Loading