test.sh 174 B

12345678
  1. #!/bin/sh
  2. if which xvfb-run > /dev/null; then
  3. xvfb-run -s "-screen 0, 1366x768x24" sbt test scripted
  4. else
  5. echo "Xvfb not installed..." 1>&2
  6. sbt test scripted
  7. fi