DEV Community

Discussion on: An advanced setup for Travis CI

Collapse
 
gklijs profile image
Gerard Klijs

You can add things like

addons:
  chrome: stable
  apt:
    sources:
      - google-chrome
    packages:
      - chromium-browser=74.0.3729.169-0ubuntu0.16.04.1
      - chromium-chromedriver

To install stuff, in this case chrome and the chrome we driver to be able to do tests in the browser.

Collapse
 
rampa2510 profile image
RAM PANDEY

Thanks for sharing also you can install different versions of services other than the default versions of the services you integrate using addons