1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 require 'integration_helper'
7 class BrowserUnsupported < ActionDispatch::IntegrationTest
8 WARNING_FRAGMENT = 'Your web browser is missing some of the features'
10 test 'warning if no File API' do
11 Capybara.current_driver = :poltergeist_without_file_api
13 assert_text :visible, WARNING_FRAGMENT
16 test 'no warning if File API' do
19 assert_no_text :visible, WARNING_FRAGMENT