reitit/scripts/test.sh

24 lines
472 B
Bash
Raw Normal View History

2017-08-07 11:08:39 +00:00
#!/bin/bash
set -e
case $1 in
cljs)
npx shadow-cljs compile node-test
node target/shadow-node-test/node-tests.js
2025-01-22 11:36:59 +00:00
rm -rf target/karma
npx shadow-cljs compile karma
npx karma start --single-run
2025-01-22 11:36:59 +00:00
rm -rf target/karma
npx shadow-cljs release karma
npx karma start --single-run
2017-08-07 11:08:39 +00:00
;;
clj)
lein test-clj
;;
*)
echo "Please select [clj|cljs]"
exit 1
;;
esac