mirror of
https://github.com/inventree/InvenTree.git
synced 2026-05-09 03:03:41 +00:00
* [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:
committed by
GitHub
parent
cbbf2d5deb
commit
ba2dbaead1
@@ -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;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user