Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeyGirin committed Jan 15, 2025
1 parent 7542412 commit cb276b5
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -570,8 +570,12 @@ test.describe('Multi-Tailed Arrow Tool', () => {
}
await clickInTheMiddleOfTheScreen(page);
await takeEditorScreenshot(page);
// test
await selectZoomInTool(page, 19);
await page.getByTestId('zoom-input').click();
for (let i = 0; i < 19; i++) {
await waitForRender(page, async () => {
await page.getByTestId('zoom-in').click();
});
}
await clickInTheMiddleOfTheScreen(page);
await takeEditorScreenshot(page);
await page.getByTestId('zoom-input').click();
Expand Down

0 comments on commit cb276b5

Please sign in to comment.