2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 20:15:44 +00:00

Use postgres for playwright testing (#9104)

* Use postgres for playwright testing

- Should reduce issues with parallel tests

* Fix deps

* Harden playwright tests
This commit is contained in:
Oliver
2025-02-19 20:33:54 +11:00
committed by GitHub
parent 7e7f745c89
commit e492774808
3 changed files with 45 additions and 10 deletions

View File

@ -28,7 +28,7 @@ export default defineConfig({
/* Run your local dev server before starting the tests */
webServer: [
{
command: 'yarn run dev',
command: 'yarn run dev --host',
url: 'http://localhost:5173',
reuseExistingServer: !process.env.CI,
stdout: 'pipe',

View File

@ -1,6 +1,6 @@
import { expect, test } from './baseFixtures.js';
import { apiUrl } from './defaults.js';
import { navigate } from './helpers.js';
import { getRowFromCell, navigate } from './helpers.js';
import { doQuickLogin } from './login.js';
import { setSettingState } from './settings.js';
@ -91,8 +91,12 @@ test('Settings - Admin', async ({ page }) => {
// Adjust some "location type" items
await page.getByRole('tab', { name: 'Location Types' }).click();
// Edit first item
await page.getByLabel('row-action-menu-0').click();
// Edit first item ('Room')
const roomCell = await page.getByRole('cell', { name: 'Room', exact: true });
const roomRow = await getRowFromCell(roomCell);
await roomRow.getByLabel(/row-action-menu-/i).click();
await page.getByRole('menuitem', { name: 'Edit' }).click();
await expect(page.getByLabel('text-field-name')).toHaveValue('Room');
@ -100,14 +104,22 @@ test('Settings - Admin', async ({ page }) => {
const oldDescription = await page
.getByLabel('text-field-description')
.inputValue();
const newDescription = `${oldDescription} (edited)`;
await page.getByLabel('text-field-description').fill(newDescription);
await page.waitForTimeout(500);
await page.getByRole('button', { name: 'Submit' }).click();
// Edit second item
await page.getByLabel('row-action-menu-1').click();
// Edit second item - 'Box (Large)'
const boxCell = await page.getByRole('cell', {
name: 'Box (Large)',
exact: true
});
const boxRow = await getRowFromCell(boxCell);
await boxRow.getByLabel(/row-action-menu-/i).click();
await page.getByRole('menuitem', { name: 'Edit' }).click();
await expect(page.getByLabel('text-field-name')).toHaveValue('Box (Large)');
await expect(page.getByLabel('text-field-description')).toHaveValue(
@ -116,11 +128,13 @@ test('Settings - Admin', async ({ page }) => {
await page.getByRole('button', { name: 'Cancel' }).click();
// Edit first item again (revert values)
await page.getByLabel('row-action-menu-0').click();
await roomRow.getByLabel(/row-action-menu-/i).click();
await page.getByRole('menuitem', { name: 'Edit' }).click();
await page.getByLabel('text-field-name').fill('Room');
await page.waitForTimeout(500);
await page.getByLabel('text-field-description').fill(oldDescription);
await page
.getByLabel('text-field-description')
.fill(newDescription.replaceAll(' (edited)', ''));
await page.waitForTimeout(500);
await page.getByRole('button', { name: 'Submit' }).click();
});