Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/app/continuous-integration/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,14 @@ colors are not properly formatted in your CI.
NO_COLOR=1 cypress run
```

### `Failed to connect to the bus: Failed to connect to socket /run/dbus/system_bus_socket`

This error message indicates that Electron is attempting to connect to `dbus`, a desktop environment service, when there is no `dbus` present.

Cypress does its best to detect non-interactive shells and disable `dbus` by setting the `DBUS_SESSION_BUS_ADDRESS` environment variable to `disabled:`.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Cypress does its best to detect non-interactive shells and disable `dbus` by setting the `DBUS_SESSION_BUS_ADDRESS` environment variable to `disabled:`.
Cypress attempts to detect non-interactive shells and disable `dbus` by setting the `DBUS_SESSION_BUS_ADDRESS` environment variable to `disabled:`.


If you see these error messages, setting the `DBUS_SESSION_BUS_ADDRESS` environment variable to `disabled:` should resolve them.

## See also

- [Cypress Real World App](https://github.com/cypress-io/cypress-realworld-app)
Expand Down