mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
13 lines
431 B
Ruby
13 lines
431 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
require 'selenium-webdriver'
|
|
|
|
RSpec.describe Capybara::Selenium::Driver do
|
|
it "should exit with a non-zero exit status" do
|
|
options = { browser: (ENV['SELENIUM_BROWSER'] || :firefox).to_sym }
|
|
browser = Capybara::Selenium::Driver.new(TestApp, options).browser
|
|
expect(browser).to be_truthy
|
|
expect(true).to eq(false) # rubocop:disable RSpec/ExpectActual
|
|
end
|
|
end
|