reitit/scripts/test.sh

15 lines
243 B
Bash
Raw Permalink Normal View History

2017-08-07 11:08:39 +00:00
#!/bin/bash
set -e
case $1 in
cljs)
2017-10-25 14:32:12 +00:00
lein "do" test-browser once, test-node once, test-advanced once
2017-08-07 11:08:39 +00:00
;;
clj)
lein test-clj
;;
*)
echo "Please select [clj|cljs]"
exit 1
;;
esac