mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 16:01:11 +00:00
15 lines
243 B
Bash
15 lines
243 B
Bash
|
|
#!/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
|