Sha256: fc8013637692a7ad42ededea118048797f376edb2acafcd2a6d06547d6b24342

Contents?: true

Size: 383 Bytes

Versions: 1

Compression:

Stored size: 383 Bytes

Contents

# frozen_string_literal: true

require 'rails_helper'
require 'webdrivers/chromedriver'
require 'action_dispatch/system_testing/server'

ActionDispatch::SystemTesting::Server.silence_puma = true

class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
  driven_by :selenium, using: :headless_chrome do |options|
    options.add_argument('--disable-dev-shm-usage')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
upgrow-0.0.2 test/application_system_test_case.rb