Skip to content

Commit badfdc1

Browse files
committed
[snapshot]
1 parent 2a3200b commit badfdc1

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ source 'https://rubygems.org'
22
gemspec
33

44
gem 'capybara-webkit'
5+
gem 'capybara', '< 2'
56

67
gem 'opal', :github => 'opal/opal'
78
gem 'opal-jquery', :github => 'opal/opal-jquery'
@@ -15,5 +16,4 @@ if RUBY_VERSION.to_f < 1.9
1516
gem 'nokogiri', '< 1.6'
1617
gem 'rails', '< 4.0'
1718
gem 'rubyzip', '< 1'
18-
gem 'capybara', '< 2'
1919
end

spec/integration/in_browser_specs_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require 'spec_helper'
22

3-
feature 'In-browser specs runner' do
3+
feature 'In-browser specs runner', type: :request do
44
scenario 'runs all specs', :js do
55
visit '/opal_spec'
66

spec/support/capybara.rb

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
require 'capybara/rspec'
22

3-
# unless ENV['CI']
4-
require 'capybara-webkit'
5-
Capybara.javascript_driver = :webkit
6-
# end
3+
require 'capybara-webkit'
4+
Capybara.javascript_driver = :webkit

0 commit comments

Comments
 (0)