2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-05-09 03:03:41 +00:00

[UI] Fix ReturnOrder table (#11845) (#11851)

* [UI] Fix ReturnOrder table

- Closes https://github.com/inventree/InvenTree/issues/11833

* Add playwright test

(cherry picked from commit 76407d71b8)

Co-authored-by: Oliver <oliver.henry.walters@gmail.com>
This commit is contained in:
github-actions[bot]
2026-05-02 20:20:17 +10:00
committed by GitHub
parent cbbf2d5deb
commit ba2dbaead1
4 changed files with 23 additions and 15 deletions
@@ -1,7 +1,5 @@
import test, { expect } from '@playwright/test';
import { noaccessuser } from '../defaults';
import { navigate } from '../helpers';
import { doLogin } from '../login';
/**
* Tests for user interface customization functionality.
@@ -20,14 +18,3 @@ test('Customization - Splash', async ({ page }) => {
page.locator('[style*="playwright_custom_splash.png"]')
).toBeVisible();
});
test('Customization - Logo', async ({ page }) => {
await doLogin(page, {
user: noaccessuser
});
await page.waitForLoadState('networkidle');
await page.waitForTimeout(2500);
return;
});