chore(test): increase wheel delta

This commit is contained in:
braks
2022-10-07 22:55:38 +02:00
committed by Braks
parent fc263a6814
commit d7ce835099
2 changed files with 5 additions and 5 deletions
@@ -22,7 +22,7 @@ describe('Store Action: `setMaxZoom`', () => {
it('sets max-zoom in viewpane', () => {
cy.viewPort().trigger('wheel', {
deltaY: -1000,
deltaY: -10000,
wheelDelta: 0,
wheelDeltaX: 0,
wheelDeltaY: 0,
@@ -22,10 +22,10 @@ describe('Store Action: `setMinZoom`', () => {
it('sets min-zoom in viewpane', () => {
cy.viewPort().trigger('wheel', {
deltaY: 100,
wheelDelta: 1000,
wheelDeltaX: 1000,
wheelDeltaY: 1000,
deltaY: 10000,
wheelDelta: 0,
wheelDeltaX: 0,
wheelDeltaY: 0,
bubbles: true,
})