Remove CUI (#8384) #16245
Annotations
10 errors, 5 warnings, and 1 notice
Run Playwright tests:
src/frontend/tests/pages/pui_build.spec.ts#L1
1) [chromium] › pages/pui_build.spec.ts:166:1 › Build Order - Allocation ─────────────────────────
Test timeout of 90000ms exceeded.
|
Run Playwright tests:
src/frontend/tests/pages/pui_build.spec.ts#L197
1) [chromium] › pages/pui_build.spec.ts:166:1 › Build Order - Allocation ─────────────────────────
Error: locator.waitFor: Test timeout of 90000ms exceeded.
Call log:
- waiting for getByRole('cell', { name: '# 7' }).locator('xpath=ancestor::tr').first().getByText('3 / 4') to be visible
195 |
196 | // Expecting 3/4 allocated outputs
> 197 | await output7.getByText('3 / 4').waitFor();
| ^
198 |
199 | // Expecting 0/3 completed tests
200 | await output7.getByText('0 / 3').waitFor();
at /home/runner/work/InvenTree/InvenTree/src/frontend/tests/pages/pui_build.spec.ts:197:36
|
Run Playwright tests:
src/frontend/tests/pages/pui_build.spec.ts#L1
1) [chromium] › pages/pui_build.spec.ts:166:1 › Build Order - Allocation ─────────────────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Test timeout of 90000ms exceeded.
|
Run Playwright tests:
src/frontend/tests/pages/pui_build.spec.ts#L248
1) [chromium] › pages/pui_build.spec.ts:166:1 › Build Order - Allocation ─────────────────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: locator.waitFor: Test timeout of 90000ms exceeded.
Call log:
- waiting for getByRole('cell', { name: 'Red Widget' }).locator('xpath=ancestor::tr').first().getByRole('cell', { name: 'widget.red' }).first() to be visible
246 | const progress = `${item.allocated} / ${item.required}`;
247 |
> 248 | await row.getByRole('cell', { name: item.ipn }).first().waitFor();
| ^
249 | await row.getByRole('cell', { name: item.available }).first().waitFor();
250 | await row.getByRole('cell', { name: progress }).first().waitFor();
251 | }
at /home/runner/work/InvenTree/InvenTree/src/frontend/tests/pages/pui_build.spec.ts:248:61
|
Run Playwright tests:
src/frontend/tests/pui_printing.spec.ts#L1
2) [chromium] › pui_printing.spec.ts:11:1 › Label Printing ───────────────────────────────────────
Test timeout of 90000ms exceeded.
|
Run Playwright tests:
src/frontend/tests/baseFixtures.ts#L85
2) [chromium] › pui_printing.spec.ts:11:1 › Label Printing ───────────────────────────────────────
Error: expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 1472
- Array []
+ Array [
+ ConsoleMessage {
+ "_event": Object {
+ "args": Array [],
+ "location": Object {
+ "columnNumber": 0,
+ "lineNumber": 0,
+ "url": "http://localhost:8000/api/stock/?part_detail=true&location_detail=true&supplier_part_detail=true",
+ },
+ "page": EventEmitter {
+ "_events": Object {
+ "bindingCall": [Function anonymous],
+ "close": [Function anonymous],
+ "crash": [Function anonymous],
+ "download": [Function anonymous],
+ "fileChooser": [Function anonymous],
+ "frameAttached": [Function anonymous],
+ "frameDetached": [Function anonymous],
+ "locatorHandlerTriggered": [Function anonymous],
+ "route": [Function anonymous],
+ "video": [Function anonymous],
+ "webSocket": [Function anonymous],
+ "worker": [Function anonymous],
+ },
+ "_eventsCount": 12,
+ "_maxListeners": undefined,
+ "_object": Object {
+ "_guid": "page@20d2337b7072f1be7ccbead89578bcb6",
+ "_type": "Page",
+ },
+ "_pendingHandlers": Map {},
+ "_rejectionHandler": undefined,
+ "off": [Function removeListener],
+ "on": [Function addListener],
+ },
+ "text": "Failed to load resource: the server responded with a status of 401 (Unauthorized)",
+ "type": "error",
+ },
+ "_page": Object {
+ "_guid": "page@20d2337b7072f1be7ccbead89578bcb6",
+ "_type": "Page",
+ },
+ },
+ ConsoleMessage {
+ "_event": Object {
+ "args": Array [],
+ "location": Object {
+ "columnNumber": 0,
+ "lineNumber": 0,
+ "url": "http://localhost:8000/api/stock/?part_detail=true&location_detail=true&supplier_part_detail=true",
+ },
+ "page": EventEmitter {
+ "_events": Object {
+ "bindingCall": [Function anonymous],
+ "close": [Function anonymous],
+ "crash": [Function anonymous],
+ "download": [Function anonymous],
+ "fileChooser": [Function anonymous],
+ "frameAttached": [Function anonymous],
+ "frameDetached": [Function anonymous],
+ "locatorHandlerTriggered": [Function anonymous],
+ "route": [Function anonymous],
+ "video": [Function anonymous],
+ "webSocket": [Function anonymous],
+ "worker": [Function anonymous],
+ },
+ "_eventsCount": 12,
+ "_maxListeners": undefined,
+ "_object": Object {
+ "_guid": "page@20d2337b7072f1be7ccbead89578bcb6",
+ "_type": "Page",
+ },
+ "_pendingHandlers": Map {},
+ "_rejectionHandler": undefined,
+ "off": [Function removeListener],
+ "on": [Function addListener],
+ },
+ "text": "Failed to load resource: the server responded with a status of 401 (Unauthorized)",
+ "type": "error",
+ },
+ "_page": Object {
+ "_guid": "page@20d2337b7072f1be7ccbead89578bcb6",
+ "_type": "Page",
+ },
+ },
+ ConsoleMessage {
+ "_event": Object {
+ "args": Array [],
+ "location": Object {
+ "columnNumber": 0,
+ "lineNumber": 0,
+ "url": "http://localhost:8000/api/stock/?part_detail=true&location_detail=true&supplier_part_detail=true",
+ },
+ "page": EventEmitter {
+ "_events": Object {
+
|
Run Playwright tests:
src/frontend/tests/pui_printing.spec.ts#L44
2) [chromium] › pui_printing.spec.ts:11:1 › Label Printing ───────────────────────────────────────
Error: locator.waitFor: Test timeout of 90000ms exceeded.
Call log:
- waiting for locator('#form-success') to be visible
42 | await page.getByRole('button', { name: 'Print', exact: true }).click();
43 |
> 44 | await page.locator('#form-success').waitFor();
| ^
45 | await page.getByText('Label printing completed').waitFor();
46 |
47 | await page.context().close();
at /home/runner/work/InvenTree/InvenTree/src/frontend/tests/pui_printing.spec.ts:44:39
|
Run Playwright tests:
src/frontend/tests/pages/pui_part.spec.ts#L1
3) [firefox] › pages/pui_part.spec.ts:100:1 › Parts - Allocations ────────────────────────────────
Test timeout of 90000ms exceeded.
|
Run Playwright tests:
src/frontend/tests/pages/pui_part.spec.ts#L108
3) [firefox] › pages/pui_part.spec.ts:100:1 › Parts - Allocations ────────────────────────────────
Error: locator.waitFor: Test timeout of 90000ms exceeded.
Call log:
- waiting for getByRole('cell', { name: 'Making some blue chairs' }) to be visible
106 |
107 | await page.getByRole('button', { name: 'Build Order Allocations' }).waitFor();
> 108 | await page.getByRole('cell', { name: 'Making some blue chairs' }).waitFor();
| ^
109 | await page.getByRole('cell', { name: 'Making tables for SO 0003' }).waitFor();
110 |
111 | // Let's look at the allocations for an entire part
at /home/runner/work/InvenTree/InvenTree/src/frontend/tests/pages/pui_part.spec.ts:108:69
|
Run Playwright tests:
src/frontend/tests/pages/pui_part.spec.ts#L1
4) [firefox] › pages/pui_part.spec.ts:165:1 › Parts - Pricing (Nothing, BOM) ─────────────────────
Test timeout of 90000ms exceeded.
|
Run Playwright tests:
src/frontend/[chromium] › modals.spec.ts#L1
src/frontend/[chromium] › modals.spec.ts took 21.2s
|
Run Playwright tests:
src/frontend/[chromium] › pui_command.spec.ts#L1
src/frontend/[chromium] › pui_command.spec.ts took 18.0s
|
Run Playwright tests:
src/frontend/[firefox] › pui_command.spec.ts#L1
src/frontend/[firefox] › pui_command.spec.ts took 17.3s
|
Run Playwright tests:
src/frontend/[firefox] › modals.spec.ts#L1
src/frontend/[firefox] › modals.spec.ts took 16.2s
|
Run Playwright tests:
src/frontend/[chromium] › settings/selectionList.spec.ts#L1
src/frontend/[chromium] › settings/selectionList.spec.ts took 16.1s
|
Run Playwright tests
7 flaky
[chromium] › pages/pui_build.spec.ts:166:1 › Build Order - Allocation ──────────────────────────
[chromium] › pui_printing.spec.ts:11:1 › Label Printing ────────────────────────────────────────
[firefox] › pages/pui_part.spec.ts:100:1 › Parts - Allocations ─────────────────────────────────
[firefox] › pages/pui_part.spec.ts:165:1 › Parts - Pricing (Nothing, BOM) ──────────────────────
[firefox] › pages/pui_stock.spec.ts:158:1 › Stock - Stock Actions ──────────────────────────────
[firefox] › pui_plugins.spec.ts:67:1 › Plugins - Custom Admin ──────────────────────────────────
[firefox] › settings/selectionList.spec.ts:5:1 › PUI - Admin - Parameter ───────────────────────
129 passed (16.7m)
|
Loading