You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go to project directory and run lein midje :autotest. 6 checks should fail.
Edit square fn in src/training_day.clj to return (* x x) instead of ":(".
Midje should return "No facts were checked. Is that what you wanted?"
Actual expectation
lein midje :autotest should really be returning "3 checks failed. (But 3 succeeded.)" in step 4, but it doesn't seem to reload the external dependencies where the tests are located.
The test file training_day_test.clj contains only a reference to a namespace containing all of the tests:
Description
lein midje :autotest
will not rerun tests in external dependencies after modifying .clj files undersrc/
folder.Steps to reproduce bug (example project)
training-day
repositorygit clone https://github.com/iloveponies/training-day.git
lein midje :autotest
. 6 checks should fail.square
fn insrc/training_day.clj
to return(* x x)
instead of":("
.Actual expectation
lein midje :autotest
should really be returning "3 checks failed. (But 3 succeeded.)" in step 4, but it doesn't seem to reload the external dependencies where the tests are located.The test file
training_day_test.clj
contains only a reference to a namespace containing all of the tests:This is the only test file in this project.
Related to #48. Also related issues from iloveponies' repositories:
The text was updated successfully, but these errors were encountered: