From 61f5a0a09a73e535f4ca53aae57ebed396ac8b1b Mon Sep 17 00:00:00 2001 From: Josh Tilles Date: Fri, 9 Oct 2015 15:08:08 -0400 Subject: [PATCH] Adapt the test instructions to cljx. The alias is taken from [the cljx README](https://github.com/lynaghk/cljx/tree/20ec61792b2a51fdfe4e6287fc8ab0cb4490513d#installation). --- DEVELOPER.md | 2 +- project.clj | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/DEVELOPER.md b/DEVELOPER.md index af047ea..3f9e483 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -1,7 +1,7 @@ # Running Clojure tests ``` -lein test +lein cleantest ``` # Running ClojureScript tests diff --git a/project.clj b/project.clj index 51e07cb..57cc8f9 100644 --- a/project.clj +++ b/project.clj @@ -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"]}} })