mirror of
https://github.com/inventree/InvenTree.git
synced 2026-02-14 10:17:07 +00:00
Char fix (#10827)
* Remove debouncing from text field * Add debounce to data import field * Only apply for strings values * Fix unit test * More unit test tweaks
This commit is contained in:
@@ -116,9 +116,15 @@ test('Importing - BOM', async ({ browser }) => {
|
||||
|
||||
// Delete selected rows
|
||||
await page
|
||||
.getByRole('dialog', { name: 'Importing Data Upload File 2' })
|
||||
.getByRole('dialog', { name: 'Importing Data Upload File' })
|
||||
.getByLabel('action-button-delete-selected')
|
||||
.waitFor();
|
||||
await page.waitForTimeout(200);
|
||||
await page
|
||||
.getByRole('dialog', { name: 'Importing Data Upload File' })
|
||||
.getByLabel('action-button-delete-selected')
|
||||
.click();
|
||||
|
||||
await page.getByRole('button', { name: 'Delete', exact: true }).click();
|
||||
|
||||
await page.getByText('Success', { exact: true }).waitFor();
|
||||
|
||||
Reference in New Issue
Block a user