This is what we did to make it work.
First we installed Node.js, and then, Karma and its CLI following these instructions.
Once we had that, we added the doo plugin to the project.clj.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
... | |
:plugins [[lein-cljsbuild "1.1.1"] | |
[lein-doo "0.1.6"]] | |
... | |
... |
Next, we created a new namespace for the unit tests in the tests directory, and set up the test build in project.clj (we called the new namespace unit-tests):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
... | |
:cljsbuild {:builds [... | |
{:id "unit-tests" | |
:source-paths ["src/cljs" "test"] | |
:compiler {:output-to "out/unit_tests.js" | |
:main 'math-ops.unit-tests | |
:optimizations :none}}]} | |
... | |
... |
:main 'math-ops.unit-tests
In that namespace, we used doo to run the tests and register the namespaces containing unit tests:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns math-ops.unit-tests | |
(:require | |
[doo.runner :refer-macros [doo-tests]] | |
[math-ops.operations-test] | |
[math-ops.operations-guessing-test])) | |
(doo-tests | |
'math-ops.operations-test | |
'math-ops.operations-guessing-test) |
Finally, to run the tests on Node.js we added it as a target to the build setup in project.clj:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
... | |
:cljsbuild {:builds [... | |
... | |
{:id "unit-tests" | |
:source-paths ["src/cljs" "test"] | |
:compiler {:output-to "out/unit_tests.js" | |
:main 'math-ops.unit-tests | |
:target :nodejs | |
:optimizations :none}}]} | |
... | |
... |
:target :nodejs
to the compiler options.
Then we could run our tests writing
lein doo node unit-tests
on the console:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trikitrok@trikitrok:/home/trikitrok/Clojure/0_MiClojure/math-ops$ lein doo node unit-tests | |
Building ... | |
Analyzing jar:file:/home/trikitrok/.m2/repository/org/clojure/clojurescript/1.7.170/clojurescript-1.7.170.jar!/cljs/core.cljs | |
... done. Elapsed 2.950936503 seconds | |
;; ====================================================================== | |
;; Testing with Node: | |
Testing math-ops.operations-test | |
Testing math-ops.operations-guessing-test | |
Ran 2 tests containing 18 assertions. | |
0 failures, 0 errors. | |
Watching paths: /home/trikitrok/Clojure/0_MiClojure/math-ops/src/cljs, /home/trikitrok/Clojure/0_MiClojure/math-ops/test |
:source-paths ["src/cljs" "test"]
, so any change to a file in them, makes the unit test run again.
You can check the code in this repository.
References:
No comments:
Post a Comment