run.sh 340 B

1234567891011121314
  1. #!/bin/bash
  2. if [ $# -lt 1 ]; then
  3. echo "Error: Please specify a browser target argument"
  4. exit 1
  5. fi
  6. export PATH=$PATH:"$(pwd)/node_modules/.bin/"
  7. concurrently \
  8. --kill-others \
  9. -s first \
  10. --names \"server,test\" \
  11. "npm run testserver" \
  12. "ts-node --skip-project -O '{\"target\": \"ES2015\"}' tests/ui/run.ts $*"