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 ?