diff options
author | Simon L <szaimen@e.mail.de> | 2023-08-10 08:45:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-10 08:45:03 +0200 |
commit | ca4c993ca35664e154990c1322b69ae0a7900f17 (patch) | |
tree | 62044e068be30839b51bb59b5ca3f88ff5d41883 | |
parent | 9fda40f92a6c4cba82246dbbc2a6602c2a28e0f1 (diff) | |
parent | d56e2aad74d9ddacd5a6503d52199912050ec1ec (diff) | |
download | nextcloud-server-ca4c993ca35664e154990c1322b69ae0a7900f17.tar.gz nextcloud-server-ca4c993ca35664e154990c1322b69ae0a7900f17.zip |
Merge pull request #39778 from nextcloud/acceptance-test-files
test: remove broken steps from files acceptance test
-rw-r--r-- | tests/acceptance/features/app-files.feature | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/acceptance/features/app-files.feature b/tests/acceptance/features/app-files.feature index 793504443da..a40afc6e53d 100644 --- a/tests/acceptance/features/app-files.feature +++ b/tests/acceptance/features/app-files.feature @@ -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" |