DEV Community

Discussion on: The complete guide to setup a CI/CD for Rails 6+ on Gitlab

Collapse
 
drnic profile image
Dr Nic Williams • Edited

Since my Gemfile already had gem "webdrivers" for local running of rails test:system, I needed to change this to disable webdrivers so as to stop the "Failed to find Chrome binary" error:

gem "webdrivers", require: !ENV['selenium_remote_url']
Enter fullscreen mode Exit fullscreen mode