Improve pick list item interactions and manage products search

This commit is contained in:
beatz174-bit
2025-11-24 08:56:26 +10:00
parent aa38a99eb4
commit f14a1ffd01
4 changed files with 72 additions and 19 deletions
+3 -1
View File
@@ -123,7 +123,9 @@ test.describe('Active pick list', () => {
await expect(page.getByText('Product updated.')).toBeVisible();
await expect(page.getByRole('button', { name: `Edit ${updatedListProductName}` })).toBeVisible();
await expect(page.getByRole('button', { name: `Edit ${listProductName}` })).toHaveCount(0);
await expect(
page.getByRole('button', { name: `Edit ${listProductName}`, exact: true }),
).toHaveCount(0);
await page.getByRole('button', { name: `Delete ${updatedListProductName}` }).click();