dev-test-run 219 B

1234567
  1. #!/usr/bin/env bash
  2. [ -z "$1" ] && echo "Please specify test type (ex. integration)" && exit
  3. TEST_TYPE="$1"
  4. shift
  5. bin/clinotty bash -c "cd dev/tests/${TEST_TYPE} && ../../../vendor/bin/phpunit -c phpunit.xml.dist $*"