How to make travis execute Angular tests on Chrome (“Please set env variable CHROME_BIN”)
Use this solution to get it running using the preinstalled Chromium Version in Travis-CI VM: https://github.com/karma-runner/karma/issues/1144#issuecomment-53633076 .travis.yml node_js: – “0.10” script: node_modules/karma/bin/karma start test/karma.conf.js –single-run before_install: – export CHROME_BIN=chromium-browser – export DISPLAY=:99.0 – sh -e /etc/init.d/xvfb start karma.conf.js module.exports = function(config) { var configuration = { /* … */ // start these browsers browsers: [‘Chrome’, … Read more