midje

2017-11-06T12:07:08.000202Z

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

2017-11-06T12:08:31.000205Z

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

socksy 2017-11-06T15:56:03.000446Z

what are the relevant parts of your project.clj?

2017-11-06T16:20:16.000815Z

@socksy this is my project.clj:

socksy 2017-11-06T16:21:06.000385Z

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

2017-11-06T16:21:29.000094Z

Oh, I will do that

socksy 2017-11-06T16:21:56.000445Z

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

socksy 2017-11-06T16:23:24.000472Z

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

2017-11-06T16:24:23.000233Z

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