Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit badfdc1

Browse files
committedFeb 4, 2014
[snapshot]
1 parent 2a3200b commit badfdc1

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed
 

‎Gemfile

+1-1
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

+1-1
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

+2-4
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)
Please sign in to comment.