exercism

George Silva 2021-09-10T17:50:03.025400Z

First of all ! thanks for this lovelly project. It's been a huge help for me to learn clojure and apply what I have been reading on several books. I've tried to jump directly into an API but it's hard. THANKS! ❤️

💙 2
George Silva 2021-09-10T17:58:41.027600Z

Feedback #1: I think this is related to issues reported above, but sometimes I get passing tests when there is actually a failure. Example, i've been doing the bird watcher exercise and I have a failure that I can confirm locally, but the site tells me all tests pass, but does not let me go through. Feedback #2: Some tests have lein configurations done, others don't. Bird watching test is missing deps.edn config as well. How can I help in those cases? Should I just open a pull request? I'm a clojure newbie, but I'd love to help with this track.

Bobbi Towers 2021-09-10T18:23:27.032300Z

#2 was just fixed (as of 10 minutes ago). #1 is due to the test runner still being under heavy development. Basically it only parses the test file for deftest forms to report the results, when it actually needs to extract the individual assertions and display them all as separate tests.

👍 1
roelof 2021-09-10T20:24:14.033300Z

yep, the more we test the more you see what is the work you have to do for the test-runner

roelof 2021-09-10T20:24:45.034Z

but also for me great work that you try this on your own