Trey Granderson
Trey Granderson

Reputation: 710

Cannot run Cypress on Ubuntu 18.04

I am trying to run Cypress on Ubuntu 18.04 and keep getting the same error. Has anyone else ran into problems running Cypress on Ubuntu 18.04?

Cypress 3.8.2 Ubuntu 18.04

enter image description here

Upvotes: 0

Views: 1654

Answers (1)

Martin Bramwell
Martin Bramwell

Reputation: 2111

This issue has been addressed here: Cypress verify command failing #6184

I tried the suggested work around and my problems went away.

Xvfb :1 -screen 0 1280x800x24 &
export DISPLAY=:1
npx cypress verify
npx cypress run

In the gitter feed Gleb Bahmutov explained

"It seems Ubuntu 18.04 XVFB has a weird behavior where it does not set default screen, we have added explicit set in cypress-io/cypress#6184 but it has not yet been released."

Upvotes: 1

Related Questions