Skip to content

Commit

Permalink
Merge branch 'column-width-fixes' into Multi-Select-Edit
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxiLein committed Oct 6, 2024
2 parents a22ed6b + c8777e9 commit 73bcd3c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/ms2/processes/process-list.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,8 @@ test('create a new folder and remove it with context menu', async ({ processList
const folderLocator = page.getByText(folderId);
await expect(folderLocator).toBeVisible();

await folderLocator.scrollIntoViewIfNeeded();
// await folderLocator.scrollIntoViewIfNeeded();
await page.evaluate(() => window!.scrollTo(0, 0));
folderLocator.click({ button: 'right' });
const menuLocator = page.getByRole('menuitem', { name: 'delete Delete' });
await menuLocator.click();
Expand Down

0 comments on commit 73bcd3c

Please sign in to comment.