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