Skip to content

Commit

Permalink
Reduce the delay in one of the integration tests
Browse files Browse the repository at this point in the history
to potentially get rid of the flakiness.
  • Loading branch information
ryzokuken committed Feb 5, 2025
1 parent 61ba1ea commit 709eb0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/highlight_editor_spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2576,7 +2576,7 @@ describe("Highlight Editor", () => {
const rect = await getSpanRectFromText(page, 1, "Abstract");
const x = rect.x + rect.width / 2;
const y = rect.y + rect.height / 2;
await page.mouse.click(x, y, { count: 2, delay: 100 });
await page.mouse.click(x, y, { count: 2, delay: 20 });
await page.waitForSelector(editorSelector);
await waitForSerialized(page, 1);

Expand Down

0 comments on commit 709eb0d

Please sign in to comment.