2015-06-30 23:59:39 +00:00
|
|
|
# Running Clojure tests
|
|
|
|
|
|
2015-07-01 00:00:14 +00:00
|
|
|
```
|
2020-09-14 19:37:16 +00:00
|
|
|
lein do clean, test
|
2015-07-01 00:00:14 +00:00
|
|
|
```
|
2015-06-30 23:59:39 +00:00
|
|
|
|
|
|
|
|
# Running ClojureScript tests
|
|
|
|
|
|
|
|
|
|
```
|
2020-08-07 21:23:33 +00:00
|
|
|
lein do clean, javac, test-cljs
|
2015-06-30 23:59:39 +00:00
|
|
|
```
|
2020-10-22 21:51:04 +00:00
|
|
|
|
|
|
|
|
# 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"
|
|
|
|
|
```
|
|
|
|
|
|