Skip to content

Commit

Permalink
fix: page.mouse.move values
Browse files Browse the repository at this point in the history
  • Loading branch information
satelllte committed Oct 20, 2023
1 parent 02e6b67 commit 75b8b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/docs/e2e/expects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const _knobDragsCorrectly =
: y;

await page.mouse.down();
await page.mouse.move(x, y + _dragAmplitude, {steps: _dragSteps});
await page.mouse.move(x, y, {steps: _dragSteps});
await page.mouse.up();

if (direction === 'up' || direction === 'right') {
Expand Down

0 comments on commit 75b8b5d

Please sign in to comment.