reitit/scripts/test.sh
2017-08-07 14:15:45 +03:00

14 lines
243 B
Bash
Executable file

#!/bin/bash
set -e
case $1 in
cljs)
lein "do" test-phantom once, test-node once, test-advanced once
;;
clj)
lein test-clj
;;
*)
echo "Please select [clj|cljs]"
exit 1
;;
esac