Keep rubocop happy with the new Selenium runner

This commit is contained in:
Matthew Draper 2017-10-28 22:44:06 +10:30
parent bf6456e053
commit f50aeba01e
1 changed files with 6 additions and 4 deletions

View File

@ -1,9 +1,11 @@
require 'qunit/selenium/test_runner'
require 'chromedriver/helper'
# frozen_string_literal: true
require "qunit/selenium/test_runner"
require "chromedriver/helper"
driver_options = Selenium::WebDriver::Chrome::Options.new
driver_options.add_argument('--headless')
driver_options.add_argument('--disable-gpu')
driver_options.add_argument("--headless")
driver_options.add_argument("--disable-gpu")
driver = ::Selenium::WebDriver.for(:chrome, options: driver_options)
result = QUnit::Selenium::TestRunner.new(driver).open(ARGV[0], timeout: 60)