Fork me on GitHub
#kaocha
<
2018-12-08
>
pithyless12:12:34

after following the setup instructions for deps.edn in the readme (`version 0.0-305`), I’m having trouble with ./bin/kaocha --watch:

pithyless12:12:40

;; Modify Code

[watch] Unloading #{code-ns}
[watch] Reloading #{test-ns}
[watch] Re-running failed tests #{...}

;; Modify Code (again)

[watch] Re-running failed tests #{...}

;; Modify Test

[watch] Reloading #{test-ns}
[watch] Re-running failed tests #{...}

;; Modify Code (again)

[watch] Re-running failed tests #{test-ns}

pithyless12:12:28

The first time I modify coder after starting the watcher, everything refreshes correctly, but afterwards it doesn’t seem to pick up on any changes. Any ideas where I may have something misconfigured?

pithyless12:12:58

My config is just:

pithyless12:12:00

#kaocha/v1
{:tests [{:id :unit
          :test-paths ["test"]
          :source-paths ["src"]}]
 }