Skip to content

Commit db57622

Browse files
author
marker dao ®
committed
fix(runners): Set offset 1
1 parent 835775b commit db57622

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/demos/utils/visual-tests/testcafe-runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ async function main() {
112112
window.getSelection()?.removeAllRanges();
113113
}).with({ boundTestRun: t })();
114114

115-
await t.hover('html', { offsetX: -9999, offsetY: -9999 });
115+
await t.hover('html', { offsetX: 1, offsetY: 1 });
116116
},
117117
},
118118
},

e2e/testcafe-devextreme/runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ async function main() {
272272
window.getSelection()?.removeAllRanges();
273273
}).with({ boundTestRun: t })();
274274

275-
await t.hover('html', { offsetX: -9999, offsetY: -9999 });
275+
await t.hover('html', { offsetX: 1, offsetY: 1 });
276276

277277
const [width, height] = meta?.browserSize || DEFAULT_BROWSER_SIZE;
278278
await t.resizeWindow(width, height);

0 commit comments

Comments
 (0)