Merge branch 'master' into 15803-unsetup
[arvados.git] / apps / workbench / test / integration / jobs_test.rb
index 7b4f2cef17735855883f619e5bf08a95a178e18f..7b510f2be9347b0a5f5b121b8d984f8ccf41983b 100644 (file)
@@ -20,28 +20,12 @@ class JobsTest < ActionDispatch::IntegrationTest
     StringIO.new content, 'r'
   end
 
-  test "add job description" do
-    job = api_fixture('jobs')['nearly_finished_job']
-    visit page_with_token("active", "/jobs/#{job['uuid']}")
-
-    # edit job description
-    within('.arv-description-as-subtitle') do
-      find('.fa-pencil').click
-      find('.editable-input textarea').set('*Textile description for job* - "Go to dashboard":/')
-      find('.editable-submit').click
-    end
-
-    # Verify edited description
-    assert_no_text '*Textile description for job*'
-    assert_text 'Textile description for job'
-    assert_selector 'a[href="/"]', text: 'Go to dashboard'
-  end
-
   [
     ['active', true],
     ['job_reader2', false],
   ].each do |user, readable|
     test "view job with components as #{user} user" do
+      Rails.configuration.Users.AnonymousUserToken = ""
       job = api_fixture('jobs')['running_job_with_components']
       component1 = api_fixture('jobs')['completed_job_in_publicly_accessible_project']
       component2 = api_fixture('pipeline_instances')['running_pipeline_with_complete_job']