The command "sudo -E apt-get -yq --no-install-suggests --no-install-recommends $(travis_apt_get_options) install google-chrome-stable fluxbox" failed and exited with 100 during

hi guys,

I am using testcafe as a TDD source for my project. While testing in my machine its working.
When I build in travis… Iam getting below error…

Error:

The command "sudo -E apt-get -yq --no-install-suggests --no-install-recommends $(travis_apt_get_options) install google-chrome-stable fluxbox" failed and exited with 100 during .

.travis.yml

dist: trusty
sudo: required
language: node_js
node_js:
- node
- '9'
addons:
  firefox: latest
  apt:
    sources:
    - google-chrome
    packages:
    - google-chrome-stable fluxbox

before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
- fluxbox >/dev/null 2>&1 &

Build url: https://travis-ci.org/Haribalajiravi/creamie/jobs/646566471
Can any one solve this mystery ?

See Get error when install google-chrome-stable -> W: GPG error: http://dl.google.com/linux/chrome/deb stable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 78BD65473CB3BD13 and others.

The chrome addon takes care of installing the packages. There is no need to use the apt addon.

Thank you so much that worked :innocent: :yum: