Sathish Kumar
Sathish Kumar

Reputation: 9

Im getting a timeout error while open the cypressin terminal

Cypress verification timed out. Command timed out after 30000 milliseconds Local\Cypress\Cache\7.4.0\Cypress\Cypress.exe --smoke-test --ping=79

Upvotes: 0

Views: 918

Answers (1)

Ashkan Heidary
Ashkan Heidary

Reputation: 61

Windows:

set CYPRESS_VERIFY_TIMEOUT=100000
npx cypress verify

Linux:

export CYPRESS_VERIFY_TIMEOUT=100000
npx cypress verify

CITE:

Cypress 9.2.0 introduces a new environment variable 'CYPRESS_VERIFY_TIMEOUT'

_ by Mohini Dahiya

Upvotes: 1

Related Questions