mirror of
https://github.com/teampoltergeist/poltergeist.git
synced 2022-11-09 12:05:00 -05:00
Skip datalist tests because PJS doesn't support datalist
This commit is contained in:
parent
895c90e194
commit
8cb7210aef
1 changed files with 6 additions and 2 deletions
|
@ -65,8 +65,12 @@ RSpec.configure do |config|
|
|||
Capybara::SpecHelper.configure(config)
|
||||
|
||||
config.filter_run_excluding :full_description => lambda { |description, metadata|
|
||||
#test is marked pending in Capybara but Poltergeist passes - disable here - have our own test in driver spec
|
||||
description =~ /Capybara::Session Poltergeist node #set should allow me to change the contents of a contenteditable elements child/
|
||||
[
|
||||
# test is marked pending in Capybara but Poltergeist passes - disable here - have our own test in driver spec
|
||||
/Capybara::Session Poltergeist node #set should allow me to change the contents of a contenteditable elements child/,
|
||||
# should not pass because PhantomJS doesn't support datalist
|
||||
/Capybara::Session Poltergeist #select input with datalist/
|
||||
].any? { |desc| description =~ desc }
|
||||
}
|
||||
|
||||
config.before(:each) do
|
||||
|
|
Loading…
Add table
Reference in a new issue