bootstrap 317 B

12345678910111213
  1. #!/usr/bin/env bash
  2. set -e
  3. [ -n "$CI" ] || npm install
  4. bundle install
  5. if phantom_version="$(phantomjs --version)"; then
  6. echo "PhantomJS $phantom_version"
  7. else
  8. echo "Warning: script/test will not be able to run, but you can still start" >&2
  9. echo "script/server and open the test suite in your browser." >&2
  10. fi