-1
現在のClojureプロジェクトでlein test
を実行すると、2回のテストでエラーが発生しますが、Clojure LeiningenテストFAILがエラーサマリーに表示されない
$ lein test
FAIL in [email protected] (config.clj:53)
expected: (= (some-fn some-input) (expected-output))
actual: (not (= (actual-output) (expected-output)))
FAIL in [email protected] (config.clj:53)
expected: (= (some-fn some-other-input) (other-expected-output))
actual: (not (= (other-actual-output) (other-expected-output)))
lein test project.test.config
lein test project.test.other-module
lein test project test.another-module
lein test project test.one-more
Ran 8 tests containing 71 assertions.
0 failures, 0 errors.
注FAIL
行と最後の行:以下の出力スニペットを参照してください。以前はこのプロジェクトでテストが行われていましたが、この不正な動作に影響したコードの変更をlein test
から切り離すことはできません。
これまで誰も見てきたことがありますか?
[MCVE](http://stackoverflow.com/help/mcve)でコードを提供すれば、何が起きているのかが分かると助かります。 –