X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d9aa5decc6edce30285df049277de2cf2c138c26..4218f74266f3fee7c618c887bea6a804005c89b9:/apps/workbench/test/integration/virtual_machines_test.rb diff --git a/apps/workbench/test/integration/virtual_machines_test.rb b/apps/workbench/test/integration/virtual_machines_test.rb index 26da0d0b03..a22337bcb4 100644 --- a/apps/workbench/test/integration/virtual_machines_test.rb +++ b/apps/workbench/test/integration/virtual_machines_test.rb @@ -1,17 +1,4 @@ require 'integration_helper' class VirtualMachinesTest < ActionDispatch::IntegrationTest - test "make and name a new virtual machine" do - Capybara.current_driver = Capybara.javascript_driver - visit page_with_token('admin_trustedclient') - click_link 'Virtual machines' - assert page.has_text? 'testvm.shell' - click_on 'Add a new virtual machine' - find('tr', text: 'hostname'). - find('span', text: 'none').click - assert page.has_text? 'Update hostname' - fill_in 'editable-text', with: 'testname' - click_button 'editable-submit' - assert page.has_text? 'testname' - end end