jasongilman / proto-repl

A Clojure Development Environment package for the Atom editor
https://atom.io/packages/proto-repl
MIT License
565 stars 50 forks source link

does this work with midje? #244

Open AlJohri opened 7 years ago

AlJohri commented 7 years ago

does proto-repl work with midje? all my tests are defined using (fact...)

andeemarks commented 6 years ago

Hi,

I have the same question as I think the answer is "no"... from what I've seen, ProtoREPL assumes you're using clojure.test tests and if you look at https://github.com/jasongilman/proto-repl/blob/master/lib/proto-repl.coffee#L591, you can see that it's delegating to https://clojuredocs.org/clojure.test/run-all-tests to execute all the tests, which is why none of your midje tests are running. I haven't found any workarounds to this as yet.