20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / test / integration / browser_unsupported_test.rb
diff --git a/apps/workbench/test/integration/browser_unsupported_test.rb b/apps/workbench/test/integration/browser_unsupported_test.rb
deleted file mode 100644 (file)
index 2933a04..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright (C) The Arvados Authors. All rights reserved.
-#
-# SPDX-License-Identifier: AGPL-3.0
-
-require 'integration_helper'
-
-class BrowserUnsupported < ActionDispatch::IntegrationTest
-  WARNING_FRAGMENT = 'Your web browser is missing some of the features'
-
-  test 'warning if no File API' do
-    Capybara.current_driver = :poltergeist_without_file_api
-    visit '/'
-    assert_text :visible, WARNING_FRAGMENT
-  end
-
-  test 'no warning if File API' do
-    need_javascript
-    visit '/'
-    assert_no_text :visible, WARNING_FRAGMENT
-  end
-end