X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e274983c4fe568dde7c04e1344edeee1951c10a2..93768ec1fae2054e22d2b7a290ae7f820b8ff77a:/apps/workbench/test/integration/application_layout_test.rb diff --git a/apps/workbench/test/integration/application_layout_test.rb b/apps/workbench/test/integration/application_layout_test.rb index b224be0bf1..69e346d078 100644 --- a/apps/workbench/test/integration/application_layout_test.rb +++ b/apps/workbench/test/integration/application_layout_test.rb @@ -21,7 +21,8 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest if profile_config && !has_profile assert page.has_text?('Save profile'), 'No text - Save profile' else - assert page.has_text?('My projects'), 'Not found text - My projects' + assert page.has_link?("Projects"), 'Not found link - Projects' + page.find("#projects-menu").click assert page.has_text?('Projects shared with me'), 'Not found text - Project shared with me' end elsif invited @@ -123,15 +124,14 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest check_help_menu end - end - - [ - ['active', api_fixture('users')['active']], - ['admin', api_fixture('users')['admin']], - ].each do |token, user| test "test system menu for user #{token}" do - visit page_with_token(token) + if !token + visit ('/') + else + visit page_with_token(token) + end + verify_system_menu user end end