X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1bcfe8651af341c6e7cd01a19443c7c288efa932..0d1d51b93a9009b6d4e423871886f0cbc65584c7:/apps/workbench/test/integration/user_manage_account_test.rb diff --git a/apps/workbench/test/integration/user_manage_account_test.rb b/apps/workbench/test/integration/user_manage_account_test.rb index 9b5e5d61e1..6d680e2d67 100644 --- a/apps/workbench/test/integration/user_manage_account_test.rb +++ b/apps/workbench/test/integration/user_manage_account_test.rb @@ -171,4 +171,14 @@ class UserManageAccountTest < ActionDispatch::IntegrationTest assert_text 'A request for shell access was sent on ' assert_selector 'a', text: 'Send request for shell access' end + + test "create new repository" do + visit page_with_token("active_trustedclient", "/manage_account") + click_on "Add new repository" + within ".modal-dialog" do + fill_in "Name", with: "workbenchtest" + click_on "Create" + end + assert_text ":active/workbenchtest.git" + end end