Skip to content

Commit

Permalink
test: ft fix in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkenos committed Aug 23, 2024
1 parent d7421dc commit b5554d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion demo/test/cucumber.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ exports.default = configure({
timeout: 8000,
parallel: 10,
headless: true,
logLevel: 'info'
logLevel: 'info',
snapshots: { images: { maxDiffPixelRatio: 0.5 } }
});
4 changes: 2 additions & 2 deletions demo/test/features/i-mouse-actions/3-move-and-scroll.feature
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ Feature: I. Mouse Actions - Move and scroll

Scenario: S01: Show coordinates
When I hover on the "#move-to" element
Then I expect the "#move-to-result" element text to be "X: 765 | Y: 2078"
Then I expect the "#move-to-result" element text to be "X: 763 | Y: 2078"
But I hover on the "#move-to-result" element
And I hover on the "#move-to" element with an offset of 5,10
Then I expect the "#move-to-result" element text to not be "X: 765 | Y: 2078"
Then I expect the "#move-to-result" element text to not be "X: 763 | Y: 2078"

Scenario: S02: Show element location
When I scroll to the "#scroll-to" element
Expand Down

0 comments on commit b5554d4

Please sign in to comment.