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

test linked rows works

This commit is contained in:
Matthias Mair
2024-04-17 22:10:20 +02:00
parent d79d062a66
commit c3b49cd2c0

View File

@ -51,4 +51,9 @@ test('PUI - Pages - Part - Pricing', async ({ page }) => {
await page.getByText('Pie Chart').click();
await page.getByRole('button', { name: 'Quantity Not sorted' }).waitFor();
await page.getByRole('button', { name: 'Unit Price Not sorted' }).waitFor();
// BOM Pricing - linkjumping
await page.getByText('Wood Screw').waitFor();
await page.getByText('Wood Screw').click();
await page.waitForURL('**/part/98/pricing');
});