运行 在 main 中进行 scalatest 而不是通过 sbt 进行测试?
Run scalatest in main instead of test through sbt?
假设我在主目录中有一个 Scalatest 文件,是否有用于 运行 测试的 sbt 命令,例如 testOnly
或 `运行Main'?在 IntelliJ 上,您可以选择 运行 测试。
您应该可以使用 test-only
。从最严重的 user guide:
test-only org.acme.RedSuite org.acme.BlueSuite
假设我在主目录中有一个 Scalatest 文件,是否有用于 运行 测试的 sbt 命令,例如 testOnly
或 `运行Main'?在 IntelliJ 上,您可以选择 运行 测试。
您应该可以使用 test-only
。从最严重的 user guide:
test-only org.acme.RedSuite org.acme.BlueSuite