mirror of
https://github.com/inventree/InvenTree.git
synced 2026-05-17 23:08:28 +00:00
[UI] Mantine 9 (#11947)
* Update mantine deps * Get it to compile * Update QueryCount widgets - use new RollingNumber component * Table updates - Remove "hack" for column ordering * "Fix" the column pinning bug (maybe?) * Fix ColumnRenderers.tsx * Fix login code for playwright * Remove hashing requirement * Fix build tests * More fixes * More test fixes * Fix playwright test for dashboard item * Update frontend version * Update changelog * Reduce query repeats * More playwright fixes * Further playwright fixes * Fix for useFilterSet hook * Fix unique key error * Fix rendering issues when opening edit forms * reduce console errors * Fix unique key issues in search drawer * Update frontend CHANGELOG.md * More form tweaks --------- Co-authored-by: Matthias Mair <code@mjmair.com>
This commit is contained in:
@@ -45,9 +45,9 @@ test('Settings - User theme', async ({ browser }) => {
|
||||
await page.getByRole('menuitem', { name: 'User settings' }).click();
|
||||
|
||||
// loader
|
||||
await page.getByRole('textbox', { name: 'Loader Type Selector' }).click();
|
||||
await page.getByRole('combobox', { name: 'Loader Type Selector' }).click();
|
||||
await page.getByRole('option', { name: 'Oval' }).click();
|
||||
await page.getByRole('textbox', { name: 'Loader Type Selector' }).click();
|
||||
await page.getByRole('combobox', { name: 'Loader Type Selector' }).click();
|
||||
await page.getByRole('option', { name: 'Bars' }).click();
|
||||
|
||||
// dark / light mode
|
||||
@@ -92,7 +92,7 @@ test('Settings - User', async ({ browser }) => {
|
||||
await page.getByText('Profile Details').waitFor();
|
||||
|
||||
// Language selection
|
||||
await page.getByRole('textbox', { name: 'Select language' }).click();
|
||||
await page.getByRole('combobox', { name: 'Select language' }).click();
|
||||
await page.getByRole('option', { name: 'العربية' }).waitFor();
|
||||
await page.getByRole('option', { name: 'Deutsch' }).waitFor();
|
||||
await page.getByRole('option', { name: 'English' }).waitFor();
|
||||
@@ -321,8 +321,8 @@ test('Settings - Admin - Background Tasks', async ({ browser }) => {
|
||||
|
||||
// Background worker should be running, and idle
|
||||
await page.getByText('Background worker running').waitFor();
|
||||
await page.getByText('Failed Tasks0').waitFor();
|
||||
await page.getByText('Pending Tasks0').waitFor();
|
||||
await page.getByText(/Failed Tasks\d+/).waitFor();
|
||||
await page.getByText(/Pending Tasks\d+/).waitFor();
|
||||
|
||||
// Expand the "scheduled tasks" view
|
||||
await page.getByRole('button', { name: 'Scheduled Tasks' }).click();
|
||||
|
||||
Reference in New Issue
Block a user