mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
Remove extraneous focus_ metadata
This commit is contained in:
parent
32b2261baf
commit
ad5d347e43
2 changed files with 2 additions and 2 deletions
|
@ -189,7 +189,7 @@ Capybara::SpecHelper.spec '#attach_file' do
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with a block', requires: %i[js] do
|
context 'with a block', requires: %i[js] do
|
||||||
it 'can upload by clicking the file input', :focus_ do
|
it 'can upload by clicking the file input' do
|
||||||
@session.attach_file(with_os_path_separators(__FILE__)) do
|
@session.attach_file(with_os_path_separators(__FILE__)) do
|
||||||
@session.find(:file_field, 'form[image]').click
|
@session.find(:file_field, 'form[image]').click
|
||||||
end
|
end
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
RSpec.describe Capybara::Result, :focus_ do
|
RSpec.describe Capybara::Result do
|
||||||
let :string do
|
let :string do
|
||||||
Capybara.string <<-STRING
|
Capybara.string <<-STRING
|
||||||
<ul>
|
<ul>
|
||||||
|
|
Loading…
Reference in a new issue