Fork me on GitHub
#midje
<
2017-11-06
>
zignd12:11:08

I'm getting an exception when I try to run lein midje:

zignd12:11:31

I wonder if it's a configuration issue cuz it's the first time I try it

socksy15:11:03

what are the relevant parts of your project.clj?

zignd16:11:16

@socksy this is my project.clj:

socksy16:11:06

You need to add midje to your project.clj for lein midje to work

zignd16:11:29

Oh, I will do that

socksy16:11:56

:plugins        [[lein-ring "0.10.0"]
                 [lein-midje "3.2"]]
is something i have in a project.clj

socksy16:11:24

I also have [midje "1.8.3"] in my dependencies, and wrapped my tests with (deftest) in order to get it run with lein test

zignd16:11:23

Oh, interesting, thanks for letting me know @socksy!