Skip to content

Commit

Permalink
Fix menu entry selection (#1246)
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollonval authored Jun 2, 2023
1 parent dda8e82 commit f1e3fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui-tests/tests/file-selection.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ test.describe('File selection for simple staging', () => {
// Click [aria-label="main"] >> text=Git
await page.locator('[aria-label="main"] >> text=Git').click();
// Click text=Simple staging
await page.locator('text=Simple staging').click();
await page.getByRole('menuitem', { name: 'Simple staging' }).click();
});

test('should mark four files with shift-click', async ({ page }) => {
Expand Down

0 comments on commit f1e3fde

Please sign in to comment.