24 lines
430 B
Markdown
24 lines
430 B
Markdown
# Running Clojure tests
|
|
|
|
```
|
|
lein do clean, test
|
|
```
|
|
|
|
# Running ClojureScript tests
|
|
|
|
```
|
|
lein do clean, javac, test-cljs
|
|
```
|
|
|
|
# Running benchmarks
|
|
## All benchmarks
|
|
```
|
|
scripts/run-benchmarks
|
|
```
|
|
## Individual benchmark(s)
|
|
Specify the benchmark names as command line args. They will likely each need quoted because they contain spaces.
|
|
Order is ignored.
|
|
```
|
|
scripts/run-benchmarks "prepend to a vector" "filter a sequence"
|
|
```
|
|
|