X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/060d38d627bd1e51dd2b3c6e7de9af6aa7d7b6f3..1267366d66cadcc09972721bf7381f96f8fe73d6:/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 ad14df18a0..1fc4427a38 100644 --- a/apps/workbench/test/integration/pipeline_templates_test.rb +++ b/apps/workbench/test/integration/pipeline_templates_test.rb @@ -17,33 +17,4 @@ class PipelineTemplatesTest < ActionDispatch::IntegrationTest "components JSON not found") end - test "pipeline template description" do - need_javascript - 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? 'Recent pipelines and processes' - - # 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