cypress-io / cypress

Fast, easy and reliable testing for anything that runs in a browser.
https://cypress.io
MIT License
46.82k stars 3.17k forks source link

Incorrect work of setupNodeEvents #23626

Closed tamtakoe closed 2 years ago

tamtakoe commented 2 years ago

Current behavior

I see ERROR:gpu_memory_buffer_support_x11.cc(44)] dri3 extension not supported and I want to disable GPU by --disable-gpu flag. And I see logs

Opening Cypress...
ERROR:gpu_memory_buffer_support_x11.cc(44)] dri3 extension not supported.

<...>

Cypress: 10.6.0
Browser: Electron 102 (headless)
Node Version: 16.16.0 (/usr/local/bin/node)

<...>     

  Running: app.cy.ts (1 of 3)
// My console.log
browser {
  name: 'electron',
  channel: 'stable',
  family: 'chromium',
  displayName: 'Electron',
  version: '102.0.5005.148',

<...>

Desired behavior

  1. Browser should run after before:browser:launch event
  2. I see browser: 'electron', but family: 'chromium'. Which docs where flags described I should read Chromium or Electron?
  3. How to prevent dri3 extension not supported error for now?

Test code to reproduce

e2e: {
    setupNodeEvents(on, config) {
      on('before:browser:launch', (browser: any = {}, launchOptions) => {
        console.log('browser', browser, 'launchOptions', launchOptions)
        launchOptions.args.push('--disable-gpu')

How to Cypress running https://github.com/nrwl/nx/blob/c7249db3861d0ed1fa7d47b360825ee8f4d27b5f/packages/cypress/src/executors/cypress/cypress.impl.ts#L228

Cypress Version

10.6.0

Node version

16.16.0

Operating System

Debian Linux 4.18.0-348.20.1.el8_5.x86_64 amd64 (Docker image: node:16.16.0-bullseye-slim)

Debug Logs

No response

Other

No response

lmiller1990 commented 2 years ago

I think the gpu warning is coming from the Electron app we launch (where you choose your testing type), not the actual browser. You should be able to modify what flags that launches with like this. I tried ELECTRON_EXTRA_LAUNCH_ARGS=--disable-gpu but it did not work - I still got the dri3 warning.

As for your questions

Browser should run after before:browser:launch event

I think this is executing correctly. I added the event to my test app and threw an error in there - the browser was never launched.

I see browser: 'electron', but family: 'chromium'. Which docs where flags described I should read Chromium or Electron?

I'm not sure what you are asking here - can you clarify? Both chrome and chromium are of the chromium family - so if you want something to apply to both of those, check against family. If you want to do something Chrome or Electron specific, use browser.

How to prevent dri3 extension not supported error for now?

I don't think you can do much right now - we need to add it to our list of "ok to swallow" warnings. We can put it here: https://github.com/cypress-io/cypress/blob/develop/cli/lib/exec/spawn.js#L47. I tested this locally, and you can too - in your node_modules/cypress/lib/exec/spawn.js you can add a check for your warning, and it will not be displayed.

I am unsure if it's actually okay to swallow this, or if the --display-gpu is even the correct flag to pass, though - it doesn't seem to prevent the warning. Curious on what @BlueWinds thinks - we implemented something similar in https://github.com/cypress-io/cypress/pull/20939... I suspect this is also safe to ignore, similar to the dbus error - it's a side effect of running on CI/Docker where there is no GUI by default.

tamtakoe commented 2 years ago

I set ENV ELECTRON_EXTRA_LAUNCH_ARGS=--disable-gpu inside my Dockerfile and don't have the error after Opening Cypress... but still have it after before:browser:launch of each test

CreatePlatformSocket() failed: Address family not supported by protocol
ERROR:gpu_memory_buffer_support_x11.cc dri3 extension not supported.

Hmm...

lmiller1990 commented 2 years ago

Hm, that's a strange one. I am able to reproduce dri3 extension not supported on launch, and silence it with ELECTRON_EXTRA_LAUNCH_ARGS, but I do not see it prior to every spec - I tried both Electron and Chrome. I'm using GH Actions - I guess my environment is slightly different, and that might be the reason I don't see it pre-browser launch (although I don't see why the initial Electron app window and an Electron browser would be any different).

As an aside, is this preventing you from running tests or just a minor annoyance?

tamtakoe commented 2 years ago

I use NX for run cypress e2e tests. If I use nx e2e web-e2e I see

  Running:  app.cy.ts                                                                       (1 of 3)
62:0905/220021.136229:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
533:0905/220021.144641:ERROR:gpu_memory_buffer_support_x11.cc(44) dri3 extension not supported.
562:0905/220021.441206:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220021.485954:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220022.071935:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220022.098563:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220022.308979:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220022.312102:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220022.315451:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220022.319151:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220022.450923:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
  web
562:0905/220024.764710:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220024.769535:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220025.270594:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220025.857365:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220025.898499:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
562:0905/220025.905058:ERROR:socket_posix.cc(96) CreatePlatformSocket() failed: Address family not supported by protocol (97)
    ✓ should display welcome message (805ms)

  1 passing (849ms)

  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        false                                                                            │
  │ Duration:     0 seconds                                                                        │
  │ Spec Ran:     app.cy.ts                                                                        │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘

If I use nx e2e web-e2e --prod I see the same errors, but

<...>

1) "before each" hook for "should display welcome message"

0 passing (1s)
1 failing

1) web
       "before each" hook for "should display welcome message":
        TypeError: The following error originated from your application code, not from Cypress.

  > Cannot read properties of undefined (reading 'api')

When Cypress detects uncaught errors originating from your application it will automatically fail the current test.

This behavior is configurable, and you can choose to turn this off by listening to the `uncaught:exception` event.

https://on.cypress.io/uncaught-exception-from-application

<...>

I still don't manage to which problem with --prod flag

lmiller1990 commented 2 years ago

Can you please share your test - or better yet, minimal repro with your code set up, or instructions on how to configure it? This will help speed up debugging greatly.

lmiller1990 commented 2 years ago

I'll need more info to continue debugging this. I suspect it's some kind of tooling conflict between NX, Cypress, etc... if you can reproduce and share a minimal reproduction, happy to reopen -- would be great to solve this, but there's only so much I can do without an example to debug. At this point, I do not see any actionable information to continue debugging, so I'll close this one out.

jackykwandesign commented 1 year ago

@lmiller1990 I get the same error, and reproduce is really easy. Just create a NX project in a remote cloud machine

My dev env:

nx e2e app-fe / nx e2e app-fe --prod will work and generate report / screenshots / video image

but when running in nx e2e app-fe --watch mode, the cypress browser ui will never prompt, just stuck at the [3192866:1117/175430.681089:ERROR:gpu_memory_buffer_support_x11.cc(44)] dri3 extension not supported image

lmiller1990 commented 1 year ago

@jackykwandesign do you have the same problem locally or only in a Nx cloud machine?

sbal5488 commented 1 year ago

How as this Resolved ? Cypress: 12.4.0

2023-01-25T21:15:37.131+05:30   │ Browser: Electron 106 (headless) │

2023-01-25T21:15:37.131+05:30   │ Node Version: v16.18.1 (/var/lang/bin/node) │

2023-01-25T21:15:37.131+05:30   │ Specs: 1 found (example.cy.js) │

2023-01-25T21:15:37.131+05:30   │ Searched: cypress/e2e/**/*.cy.{js,jsx,ts,tsx} │

    Running: example.cy.js (1 of 1)
:ERROR:gpu_memory_buffer_support_x11.cc(44)] dri3 extension not supported.

2023-01-25T21:15:37.189+05:30

Copy
[25:0125/154537.189162:ERROR:socket_posix.cc(93)] CreatePlatformSocket() failed: Address family not supported by protocol (97)
[25:0125/154537.189162:ERROR:socket_posix.cc(93)] CreatePlatformSocket() failed: Address family not supported by protocol (97)
lmiller1990 commented 1 year ago

Need a reproduction, and also an explanation - are you unhappy about the warning? Or is this preventing you from executing your tests?

:ERROR:gpu_memory_buffer_support_x11.cc(44)] dri3 extension not supported.

This should not prevent you from running Cypress on CI - what behavior are you seeing?

sbal5488 commented 1 year ago

Attached is the log file which has debug information.

Let me explain the problem

  1. Created a docker image and published to ECR (followed this link, https://github.com/magJ/cypress-lambda-example)
  2. Invoke docker image from lambda function, lambda handler got invoked successfully, but when we invoke cypress , it is giving permission denied

cypress.run({ reporter: 'junit', browser: 'chromium', record: false, headless: true, chromeWebSecurity: false, key:'0f424505-76e2-402e-a539-5d4600e39df0', configFile: './cypress.config.js' })

  1. AWS + Lambda + Docker + Cypress is my requirement.

After executing the lambda, it is throwing me an error as attached in the log file

Any suggestions to this problem is highly appreciated.

Please note, I have just started using cypress.

@.*** Srinivas Balivada | Associate Director, Software Development Plot No. 43, Ground & First Floor Hitech City, Madhapur Hyderabad - 500 081, India Mobile : +919701005454

From: Lachlan Miller @.> Sent: Thursday, January 26, 2023 4:46 AM To: cypress-io/cypress @.> Cc: Srinivasa Rao Balivada @.>; Comment @.> Subject: Re: [cypress-io/cypress] Incorrect work of setupNodeEvents (Issue #23626)

PLEASE BE CAUTIOUS, EXTERNAL EMAIL: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe. Report this email, if suspicious by clicking on "Report Phishing" button available within Outlook for Desktop, Web or Mobile. In case reporting button is not available, please report it to @.***'.

Need a reproduction, and also an explanation - are you unhappy about the warning? Or is this preventing you from executing your tests?

:ERROR:gpu_memory_buffer_support_x11.cc(44)] dri3 extension not supported.

This should not prevent you from running Cypress on CI - what behavior are you seeing?

- Reply to this email directly, view it on GitHubhttps://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcypress-io%2Fcypress%2Fissues%2F23626%23issuecomment-1404347604&data=05%7C01%7Csrinivasarao.balivada%40concentrix.com%7Cd9e6c65ba27d4adfdea308daff2a20cc%7C599e51d62f8c43478e591f795a51a98c%7C0%7C0%7C638102853678386595%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=2MUKxI7V9TJubeJmWlYG%2Bp4Kt7y1E9GCenJsDJScuko%3D&reserved=0, or unsubscribehttps://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FA23NWCR5KHQOXA7WB7CZT63WUGX27ANCNFSM6AAAAAAQAURVDY&data=05%7C01%7Csrinivasarao.balivada%40concentrix.com%7Cd9e6c65ba27d4adfdea308daff2a20cc%7C599e51d62f8c43478e591f795a51a98c%7C0%7C0%7C638102853678386595%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=A6AUroDzbtuHLxEh2WIW8lKvNmT71vCTeyZ1BuCAt8I%3D&reserved=0. You are receiving this because you commented.Message ID: @.**@.>>

message "'--remote-debugging-port=41745', " "'--remote-debugging-address=127.0.0.1' " "], " "extensions: [], " "env: {} " "} " "2023-01-26T01:44:06.766Z cypress:server:browsers:chrome chrome is running headlessly, not installing extension " "2023-01-26T01:44:06.766Z cypress:server:appdata path: /tmp/Cypress/cy/production/extensions " "2023-01-26T01:44:06.767Z cypress:server:browsers:chrome launching in chrome with debugging port { " "url: 'http://localhost:37825/__/#/specs/runner?file=cypress/e2e/UI/example.cy.js', " "args: [ " "'--test-type', " "'--ignore-certificate-errors', " "'--start-maximized', " "'--silent-debugger-extension-api', " "'--no-default-browser-check', " "'--no-first-run', " "'--noerrdialogs', " "'--enable-fixed-layout', " "'--disable-popup-blocking', " "'--disable-password-generation', " "'--disable-single-click-autofill', " "'--disable-prompt-on-repos', " "'--disable-background-timer-throttling', " "'--disable-renderer-backgrounding', " "'--disable-renderer-throttling', " "'--disable-backgrounding-occluded-windows', " "'--disable-restore-session-state', " "'--disable-new-profile-management', " "'--disable-new-avatar-menu', " "'--allow-insecure-localhost', " "'--reduce-security-for-testing', " "'--enable-automation', " "'--disable-print-preview', " "'--disable-device-discovery-notifications', " "'--autoplay-policy=no-user-gesture-required', " "'--disable-site-isolation-trials', " "'--metrics-recording-only', " "'--disable-prompt-on-repost', " "'--disable-hang-monitor', " "'--disable-sync', " "'--disable-web-resources', " "'--safebrowsing-disable-download-protection', " "'--disable-client-side-phishing-detection', " "'--disable-component-update', " """--simulate-outdated-no-au='Tue, 31 Dec 2099 23:59:59 GMT'"", " "'--disable-default-apps', " "'--use-fake-ui-for-media-stream', " "'--use-fake-device-for-media-stream', " "'--disable-ipc-flooding-protection', " "'--disable-backgrounding-occluded-window', " "'--disable-breakpad', " "'--password-store=basic', " "'--use-mock-keychain', " "'--disable-dev-shm-usage', " "'--enable-precise-memory-info', " "'--disable-gpu', " "'--no-sandbox', " "'--proxy-server=http://localhost:37825', " "'--disable-web-security', " "'--allow-running-insecure-content', " "'--proxy-bypass-list=<-loopback>', " "'--headless', " "'--window-size=1280,720', " "'--force-device-scale-factor=1', " "'--remote-debugging-port=41745', " "'--remote-debugging-address=127.0.0.1', " "'--user-data-dir=/tmp/Cypress/cy/production/browsers/chromium-stable/run-25', " "'--disk-cache-dir=/tmp/Cypress/cy/production/browsers/chromium-stable/run-25/CypressCache' " "], " "port: 41745 " "} " "2023-01-26T01:44:06.768Z cypress:launcher:browsers launching browser { browser: { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '109.0.5414.74', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '109', isHeadless: true, isHeaded: false }, url: 'about:blank' } " "2023-01-26T01:44:06.768Z cypress:launcher:browsers spawning browser with opts { browser: { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '109.0.5414.74', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '109', isHeadless: true, isHeaded: false }, url: 'about:blank', spawnOpts: { stdio: [ 'ignore', 'pipe', 'pipe' ], env: { AWS_LAMBDA_FUNCTION_VERSION: '$LATEST', AWS_SESSION_TOKEN: '****//////////**', CYPRESS_CACHE_FOLDER: '/opt/cypress', AWS_LAMBDA_LOG_GROUP_NAME: '/aws/lambda/tdocker3', LD_LIBRARY_PATH: '/var/lang/lib:/lib64:/usr/lib64:/var/runtime:/var/runtime/lib:/var/task:/var/task/lib:/opt/lib', LAMBDA_TASK_ROOT: '/var/task', AWS_LAMBDA_LOG_STREAM_NAME: '2023/01/26/[$LATEST]8d662706ebe5400886d4402c83e086d7', AWS_LAMBDA_RUNTIME_API: '127.0.0.1:9001', AWS_EXECUTION_ENV: 'AWS_Lambda_nodejs16.x', AWS_XRAY_DAEMON_ADDRESS: '169.254.79.129:2000', AWS_LAMBDA_FUNCTION_NAME: 'tdocker3', PATH: '/var/lang/bin:/usr/local/bin:/usr/bin/:/bin:/opt/bin', AWS_DEFAULT_REGION: 'us-east-1', PWD: '/var/task', AWS_SECRET_ACCESS_KEY: '**', LANG: 'en_US.UTF-8', LAMBDA_RUNTIME_DIR: '/var/runtime', AWS_LAMBDA_INITIALIZATION_TYPE: 'on-demand', NODE_PATH: '/opt/nodejs/node16/node_modules:/opt/nodejs/node_modules:/var/runtime/node_modules:/var/runtime:/var/task', AWS_REGION: 'us-east-1', TZ: ':/etc/localtime', AWS_ACCESS_KEY_ID: '', SHLVL: '0', XDG_CONFIG_HOME: '/tmp', _AWS_XRAY_DAEMON_ADDRESS: '169.254.79.129', _AWS_XRAY_DAEMON_PORT: '2000', ELECTRON_EXTRA_LAUNCH_ARGS: '--no-zygote --disable-gpu --single-process', AWS_XRAY_CONTEXT_MISSING: 'LOG_ERROR', _HANDLER: 'src/index.handler', AWS_LAMBDA_FUNCTION_MEMORY_SIZE: '1024', DEBUG: 'cypress:*', NODE_EXTRA_CA_CERTS: '/etc/pki/tls/certs/ca-bundle.crt', _X_AMZN_TRACE_ID: 'Root=1-63d1dade-7c93b7db4b56367a4a18aad4;Parent=2002c9b023ce4a55;Sampled=0', DISPLAY: ':99', FORCE_COLOR: '0', DEBUG_COLORS: '0', FORCE_STDIN_TTY: '0', FORCE_STDOUT_TTY: '0', FORCE_STDERR_TTY: '0', DBUS_SESSION_BUS_ADDRESS: 'disabled:', CHROME_DESKTOP: 'Cypress.desktop', ORIGINAL_XDG_CURRENT_DESKTOP: 'undefined', CYPRESS_INTERNAL_ENV: 'production', PROJECT_BASE_DIR: '/opt/cypress/12.4.0/Cypress/resources/app', UV_THREADPOOL_SIZE: '128', CYPRESS: 'true', GDK_BACKEND: 'x11', NO_AT_BRIDGE: '1', NODE_TLS_REJECT_UNAUTHORIZED: '0' } } } " "2023-01-26T01:44:06.785Z cypress:network:connect received error on connect, retrying { iteration: 0, delay: 100, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:06.887Z cypress:network:connect received error on connect, retrying { iteration: 1, delay: 100, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:06.933Z cypress:launcher:browsers chromium stderr: prctl(PR_SET_NO_NEW_PRIVS) failed " "2023-01-26T01:44:06.934Z cypress:launcher:browsers chromium stderr: prctl(PR_SET_NO_NEW_PRIVS) failed " "2023-01-26T01:44:06.935Z cypress:launcher:browsers chromium stderr: " "2023-01-26T01:44:06.988Z cypress:network:connect received error on connect, retrying { iteration: 2, delay: 100, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:07.089Z cypress:network:connect received error on connect, retrying { iteration: 3, delay: 100, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:07.105Z cypress:launcher:browsers chromium stderr: DevTools listening on ws://127.0.0.1:41745/devtools/browser/55f6cad3-a82a-4a3e-8a2f-9deb0469a415 " "2023-01-26T01:44:07.106Z cypress:launcher:browsers chromium stderr: prctl(PR_SET_NO_NEW_PRIVS) failed " "2023-01-26T01:44:07.106Z cypress:launcher:browsers chromium stderr: " "2023-01-26T01:44:07.107Z cypress:launcher:browsers chromium stderr: [0126/014407.106803:WARNING:bluez_dbus_manager.cc(247)] Floss manager not present, cannot set Floss enable/disable. " "2023-01-26T01:44:07.108Z cypress:launcher:browsers chromium stderr: [0126/014407.107727:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002 " "[0126/014407.107748:WARNING:gpu_process_host.cc(1338)] The GPU process has crashed 1 time(s) " "2023-01-26T01:44:07.190Z cypress:network:connect successfully connected { opts: { host: '127.0.0.1', port: 41745, getDelayMsForRetry: [Function: getDelayMsForRetry] }, iteration: 4 } " "2023-01-26T01:44:07.197Z cypress:launcher:browsers chromium stderr: [0126/014407.197650:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002 " "[0126/014407.197683:WARNING:gpu_process_host.cc(1338)] The GPU process has crashed 2 time(s) " "2023-01-26T01:44:07.211Z cypress:launcher:browsers chromium stderr: [0126/014407.211545:ERROR:network_service_instance_impl.cc(539)] Network service crashed, restarting service. " "2023-01-26T01:44:07.214Z cypress:launcher:browsers chromium stderr: prctl(PR_SET_NO_NEW_PRIVS) failed " "2023-01-26T01:44:07.217Z cypress:server:browsers:cri-client connecting { target: 'ws://127.0.0.1:41745/devtools/browser/55f6cad3-a82a-4a3e-8a2f-9deb0469a415' } " "2023-01-26T01:44:07.308Z cypress:launcher:browsers chromium stderr: [0126/014407.215473:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002 " "[0126/014407.215491:WARNING:gpu_process_host.cc(1338)] The GPU process has crashed 3 time(s) " "[0126/014407.226995:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002 " "[0126/014407.227017:WARNING:gpu_process_host.cc(1338)] The GPU process has crashed 4 time(s) " "[0126/014407.228136:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002 " "[0126/014407.228149:WARNING:gpu_process_host.cc(1338)] The GPU process has crashed 5 time(s) " "[0126/014407.245568:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002 " "[0126/014407.245591:WARNING:gpu_process_host.cc(1338)] The GPU process has crashed 6 time(s) " "[0126/014407.245603:FATAL:gpu_data_manager_impl_private.cc(440)] GPU process isn't usable. Goodbye. " "2023-01-26T01:44:07.347Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 100, err: Error: read ECONNRESET at TCP.onStreamRead (node:internal/stream_base_commons:217:20) { errno: -104, code: 'ECONNRESET', syscall: 'read' } } " "2023-01-26T01:44:07.361Z cypress:launcher:browsers chromium exited: { code: null, signal: 'SIGTRAP' } " "2023-01-26T01:44:07.448Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 100, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:07.549Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 100, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:07.651Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 100, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:07.752Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 100, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:07.854Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 100, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:07.955Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 100, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:08.057Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 100, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:08.159Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 100, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:08.260Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 500, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:08.762Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 500, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:09.264Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 500, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:09.765Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 500, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:10.267Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 500, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:10.769Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 500, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:11.271Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 500, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "2023-01-26T01:44:11.772Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 500, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 18/62) " "2023-01-26T01:44:12.274Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 19/62) " "2023-01-26T01:44:13.277Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 20/62) " "2023-01-26T01:44:14.280Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 21/62) " "2023-01-26T01:44:15.282Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 22/62) " "2023-01-26T01:44:16.285Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 23/62) " "2023-01-26T01:44:17.287Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 24/62) " "2023-01-26T01:44:18.289Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 25/62) " "2023-01-26T01:44:19.291Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 26/62) " "2023-01-26T01:44:20.294Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 27/62) " "2023-01-26T01:44:21.296Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 28/62) " "2023-01-26T01:44:22.298Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 29/62) " "2023-01-26T01:44:23.300Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 30/62) " "2023-01-26T01:44:24.303Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 31/62) " "2023-01-26T01:44:25.305Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 32/62) " "2023-01-26T01:44:26.306Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 33/62) " "2023-01-26T01:44:27.308Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 34/62) " "2023-01-26T01:44:28.311Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 35/62) " "2023-01-26T01:44:29.313Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 36/62) " "2023-01-26T01:44:30.316Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 37/62) " "2023-01-26T01:44:31.319Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 38/62) " "2023-01-26T01:44:32.321Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 39/62) " "2023-01-26T01:44:33.324Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 40/62) " "2023-01-26T01:44:34.326Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 41/62) " "2023-01-26T01:44:35.327Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 42/62) " "2023-01-26T01:44:36.330Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 43/62) " "2023-01-26T01:44:37.332Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 44/62) " "2023-01-26T01:44:38.335Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 45/62) " "2023-01-26T01:44:39.337Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 46/62) " "2023-01-26T01:44:40.340Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 47/62) " "2023-01-26T01:44:41.342Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 48/62) " "2023-01-26T01:44:42.345Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 49/62) " "2023-01-26T01:44:43.347Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 50/62) " "2023-01-26T01:44:44.349Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 51/62) " "2023-01-26T01:44:45.352Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 52/62) " "2023-01-26T01:44:46.357Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 53/62) " "2023-01-26T01:44:47.360Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 54/62) " "2023-01-26T01:44:48.361Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 55/62) " "2023-01-26T01:44:49.364Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 56/62) " "2023-01-26T01:44:50.366Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " "Still waiting to connect to Chromium, retrying in 1 second (attempt 57/62) " "2023-01-26T01:44:51.369Z cypress:server:browsers:browser-cri-client error finding browser target, maybe retrying { delay: 1000, err: Error: connect ECONNREFUSED 127.0.0.1:41745 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', port: 41745 } } " const { defineConfig } = require("cypress"); const { cypressBrowserPermissionsPlugin } = require('cypress-browser-permissions') module.exports = defineConfig({ projectId: "j7vedf", e2e: { //if set as false then any code change will required re-run the test. If set as true then after saving // the code Test runner will execute the test with code change. watchForFileChanges: false, chromeWebSecurity: false, screenshotOnRunFailure: true,

//Set the global timeout
defaultCommandTimeout: 16000,

// baseUrl: "https://admin-portal-alb.xpr-nprr-cnxcit.com/adminportal/login/",

setupNodeEvents(on, config) {
  config = cypressBrowserPermissionsPlugin(on, config)
  return config
},

},

});