zuul-jobs/roles/nodejs-test-dependencies/tasks/main.yaml
Andreas Jaeger e2138467d6 Fix npm-run-test
The legacy test installed chromium and xvfb as well and started it,
add these back in for the run-test job.

Closes-Bug: #1731421
Change-Id: I40b7d019551c227e4b8a0e11366b1ce448d5bbed
Co-Authored-By: Akihiro Motoki <amotoki@gmail.com>
2017-11-14 13:19:08 +00:00

13 lines
267 B
YAML

- name: Install chromium-brower
apt:
name: chromium-browser
become: true
- name: Install xvfb
apt:
name: xvfb
become: true
- name: Run Xvfb
shell: "/usr/bin/Xvfb :99 -screen 0 '1280x1024x24' -ac +extension GLX +render -noreset 2>&1 > /dev/null &"