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
|
|
|
|
|
|
|
|
|
|
```
|
2016-05-26 13:40:33 +00:00
|
|
|
lein javac
|
2017-04-01 08:46:02 +00:00
|
|
|
lein doo node test-build once
|
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"
|
|
|
|
|
```
|
|
|
|
|
|