Adapt the test instructions to cljx.

The alias is taken from [the cljx README](20ec61792b (installation)).
This commit is contained in:
Josh Tilles 2015-10-09 15:08:08 -04:00
parent 8df05c2597
commit 61f5a0a09a
2 changed files with 5 additions and 2 deletions

View file

@ -1,7 +1,7 @@
# Running Clojure tests
```
lein test
lein cleantest
```
# Running ClojureScript tests

View file

@ -22,5 +22,8 @@
:rules :clj}
{:source-paths ["test"]
:output-path "target/test-classes"
:rules :cljs}]}}
:rules :cljs}]}
:aliases {"cleantest" ["do" "clean,"
"cljx" "once,"
"test"]}}
})