1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

window#maximize only pending for firefox test under travis

This commit is contained in:
Thomas Walpole 2015-03-17 13:11:31 -07:00
parent 864fb620b5
commit c789ffb089

View file

@ -121,7 +121,7 @@ Capybara::SpecHelper.spec Capybara::Window, requires: [:windows] do
describe '#maximize' do
it 'should be able to maximize window', requires: [:windows, :js] do
pending "This test fails when run on Travis for an unknown reason - setting to pending for now" if ENV['TRAVIS']
pending "This test fails when run with Firefox on Travis for an unknown reason - setting to pending for now" if ENV['TRAVIS'] && @session.respond_to?(:mode) && (@session.mode == :selenium_focus)
screen_width, screen_height = @session.evaluate_script("[window.screen.availWidth, window.screen.availHeight];")
window = @session.current_window
window.resize_to(screen_width-100, screen_height-100)