Skip to content

Commit

Permalink
Increase Max height / width to 8000px (cypress-io#5882)
Browse files Browse the repository at this point in the history
  • Loading branch information
digiink authored and avallete committed Dec 10, 2019
1 parent 9ae242b commit a2daba3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/driver/src/cy/commands/window.coffee
Expand Up @@ -159,7 +159,7 @@ module.exports = (Commands, Cypress, cy, state, config) ->

widthAndHeightAreWithinBounds = (width, height) ->
_.every [width, height], (val) ->
val >= 20 and val <= 4000
val >= 20 and val <= 8000

switch
when _.isString(presetOrWidth) and _.isBlank(presetOrWidth)
Expand Down
2 changes: 1 addition & 1 deletion packages/driver/src/cypress/error_messages.coffee
Expand Up @@ -1030,7 +1030,7 @@ module.exports = {

viewport:
bad_args: "#{cmd('viewport')} can only accept a string preset or a width and height as numbers."
dimensions_out_of_range: "#{cmd('viewport')} width and height must be between 20px and 4000px."
dimensions_out_of_range: "#{cmd('viewport')} width and height must be between 20px and 8000px."
empty_string: "#{cmd('viewport')} cannot be passed an empty string."
invalid_orientation: "#{cmd('viewport')} can only accept '{{all}}' as valid orientations. Your orientation was: '{{orientation}}'"
missing_preset: "#{cmd('viewport')} could not find a preset for: '{{preset}}'. Available presets are: {{presets}}"
Expand Down
Expand Up @@ -640,32 +640,32 @@ describe "src/cy/commands/window", ->
it "throws when passed negative numbers", (done) ->
cy.on "fail", (err) =>
expect(@logs.length).to.eq(1)
expect(err.message).to.eq "cy.viewport() width and height must be between 20px and 4000px."
expect(err.message).to.eq "cy.viewport() width and height must be between 20px and 8000px."
done()

cy.viewport(800, -600)

it "throws when passed width less than 20", (done) ->
cy.on "fail", (err) =>
expect(@logs.length).to.eq(1)
expect(err.message).to.eq "cy.viewport() width and height must be between 20px and 4000px."
expect(err.message).to.eq "cy.viewport() width and height must be between 20px and 8000px."
done()

cy.viewport(19, 600)

it "does not throw when passed width equal to 20", ->
cy.viewport(20, 600)

it "throws when passed height greater than than 4000", (done) ->
it "throws when passed height greater than than 8000", (done) ->
cy.on "fail", (err) =>
expect(@logs.length).to.eq(1)
expect(err.message).to.eq "cy.viewport() width and height must be between 20px and 4000px."
expect(err.message).to.eq "cy.viewport() width and height must be between 20px and 8000px."
done()

cy.viewport(1000, 4001)
cy.viewport(1000, 8001)

it "does not throw when passed width equal to 4000", ->
cy.viewport(200, 4000)
it "does not throw when passed width equal to 8000", ->
cy.viewport(200, 8000)

it "throws when passed an empty string as width", (done) ->
cy.on "fail", (err) =>
Expand Down

0 comments on commit a2daba3

Please sign in to comment.