Skip to content

Commit 4ab974e

Browse files
authored
Merge pull request #113 from clojureverse/oxalorg/docs-add-testing-instructions
docs: add testing instructions
2 parents 1a91521 + 8c7d10b commit 4ab974e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,23 @@ user> (last-request) ;; See the last ring request handled
8686
user> (last-response) ;; See the last response the app generated
8787
```
8888

89+
### Tests
90+
91+
We're using [Kaocha](https://github.com/lambdaisland/kaocha/) for our testing needs.
92+
93+
You can run the tests by running the following command from the project root directory:
94+
95+
```
96+
./bin/kaocha
97+
```
98+
99+
You can also run tests from the repl. For example to run the tests inside `test/clojurians_log/views_test.clj`:
100+
101+
```
102+
(use 'kaocha.repl)
103+
(run 'clojurians-log.views-test)
104+
```
105+
89106
## License
90107

91108
Copyright © 2018-2020 Brasseur and contributors.

0 commit comments

Comments
 (0)