sbt 사용할 때 Exception이 fully하게 보여주지 않으니 답답한데..
-oD를 사용하니 기니 Exception이 fully 로 나온다. 속이 시원하다.
http://www.scalatest.org/user_guide/using_scalatest_with_sbt
Specifying ScalaTest Arguments
You can pass arguments to ScalaTest by using testOptions
and Tests.Argument
in your sbt build file:
testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest, "-oD")
The -oD
argument above will be pass to ScalaTest for all test runs, you can also pass arguments for individual runs by using test-only
and placing them after --
, like this:
> test-only org.acme.RedSuite -- -oD