X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/50bccff93109fe6ef9c370d2a858049d8b2e22cd..c7cf228372bee18d84b14fc4089a758bc157fe76:/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 deleted file mode 100644 index 1fc4427a38..0000000000 --- a/apps/workbench/test/integration/pipeline_templates_test.rb +++ /dev/null @@ -1,20 +0,0 @@ -# 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 - need_javascript - uuid = api_fixture("pipeline_templates")["components_is_jobspec"]["uuid"] - visit page_with_token("active", "/pipeline_templates/#{uuid}") - click_on "Components" - assert(page.has_no_text?("script_parameters"), - "components JSON visible without popup") - click_on "Show components JSON" - assert(page.has_text?("script_parameters"), - "components JSON not found") - end - -end