bugraoz93 commented on PR #66653: URL: https://github.com/apache/airflow/pull/66653#issuecomment-4415618907
Seems lots of connection refused from the beginning ```shell RUN v3.2.4 /home/runner/work/airflow/airflow/airflow-core/src/airflow/ui stderr | src/pages/DagsList/DagCard.test.tsx stdout | src/pages/DagsList/DagCard.test.tsx π i18next is maintained with support from Locize β consider powering your project with managed localization (AI, CDN, integrations): https://locize.com/ π AggregateError: at internalConnectMultiple (node:net:1142:49) at afterConnectMultiple (node:net:1723:7) { code: 'ECONNREFUSED', [errors]: [ Error: connect ECONNREFUSED ::1:3000 at createConnectionError (node:net:1686:14) at afterConnectMultiple (node:net:1716:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '::1', port: 3000 }, Error: connect ECONNREFUSED 127.0.0.1:3000 at createConnectionError (node:net:1686:14) at afterConnectMultiple (node:net:1716:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 3000 } ] } ... ``` It is followed by the below. So not sure if test is actually failed or the connection was refused from some point made the UI not available from the previous test or so ```shell β― src/pages/TaskInstance/Logs/Logs.test.tsx:94:68 92| expect(summarySource).toBeVisible(); 93| fireEvent.click(summarySource); 94| await waitFor(() => expect(screen.queryByText(/sources=\[/iu)).toBβ¦ | ^ 95| 96| const summaryPre = screen.getByTestId("summary-Pre task execution β¦ β― runWithExpensiveErrorDiagnosticsDisabled node_modules/.pnpm/@[email protected]/node_modules/@testing-library/dom/dist/config.js:47:12 β― checkCallback node_modules/.pnpm/@[email protected]/node_modules/@testing-library/dom/dist/wait-for.js:124:77 β― Timeout.checkRealTimersCallback node_modules/.pnpm/@[email protected]/node_modules/@testing-library/dom/dist/wait-for.js:118:16 β―β―β―β―β―β―β―β―β―β―β―β―β―β―β―β―β―β―β―β―β―β―β―β―[1/1]β― Test Files 1 failed | 37 passed (38) Tests 1 failed | 236 passed (237) Start at 14:00:44 Duration 60.95s (transform 21.64s, setup 16.23s, collect 121.87s, tests 18.58s, environment 12.77s, prepare 3.54s) Error: Error: expect(received).toBeVisible() received value must be an HTMLElement or an SVGElement. Received has type: Null Received has value: null ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
