specter/DEVELOPER.md

15 lines
209 B
Markdown
Raw Normal View History

2015-06-30 23:59:39 +00:00
# Running Clojure tests
2015-07-01 00:00:14 +00:00
```
lein cleantest
2015-07-01 00:00:14 +00:00
```
2015-06-30 23:59:39 +00:00
# Running ClojureScript tests
```
2016-04-24 15:10:55 +00:00
rm -rf out/
lein cljx
2016-04-24 15:10:55 +00:00
rlwrap java -cp `lein classpath` clojure.main repl.clj
(require 'com.rpl.specter.cljs-test-runner)
2015-06-30 23:59:39 +00:00
```