X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a6809bec920bdfdfc03c726d0808e696824289f5..42c20b25e1325124b88e3b9b285544dc41122b56:/apps/workbench/test/integration/pipeline_templates_test.rb diff --git a/apps/workbench/test/integration/pipeline_templates_test.rb b/apps/workbench/test/integration/pipeline_templates_test.rb index b909ac0378..1fc4427a38 100644 --- a/apps/workbench/test/integration/pipeline_templates_test.rb +++ b/apps/workbench/test/integration/pipeline_templates_test.rb @@ -1,8 +1,12 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'integration_helper' class PipelineTemplatesTest < ActionDispatch::IntegrationTest test "JSON popup available for strange components" do - Capybara.current_driver = Capybara.javascript_driver + need_javascript uuid = api_fixture("pipeline_templates")["components_is_jobspec"]["uuid"] visit page_with_token("active", "/pipeline_templates/#{uuid}") click_on "Components" @@ -13,33 +17,4 @@ class PipelineTemplatesTest < ActionDispatch::IntegrationTest "components JSON not found") end - test "pipeline template description" do - Capybara.current_driver = Capybara.javascript_driver - visit page_with_token("active", "/pipeline_templates") - - # go to Two Part pipeline template - within first('tr', text: 'Two Part Pipeline Template') do - find(".fa-gears").click - end - - # edit template description - within('.arv-description-as-subtitle') do - find('.fa-pencil').click - find('.editable-input textarea').set('*Textile description for pipeline template* - "Go to dashboard":/') - find('.editable-submit').click - end - wait_for_ajax - - # Verfiy edited description - assert page.has_no_text? '*Textile description for pipeline template*' - assert page.has_text? 'Textile description for pipeline template' - assert page.has_link? 'Go to dashboard' - click_link 'Go to dashboard' - assert page.has_text? 'Active pipelines' - - # again visit recent templates page and verify edited description - visit page_with_token("active", "/pipeline_templates") - assert page.has_no_text? '*Textile description for pipeline template*' - assert page.has_text? 'Textile description for pipeline template' - end end