如何在scalatest / playspec中仅运行一项测试

时间:2019-03-04 06:33:20

标签: intellij-idea

我的spec文件进行了几次测试

"HomeController index page" should {
    "have title Welcome " in {
....
}

  "Home controller " should {
      "render homepage with csrfToken" in {
...
}

要在IntelliJ中运行测试,请在right-click文件上spec,然后选择run。但这将运行所有测试。是否可以选择测试并仅运行所选的测试?

1 个答案:

答案 0 :(得分:0)

通过将光标置于测试方法内并按 Ctrl + Shift + F10 或创建ScalaTest运行/调试配置,您可以在其中指定要运行的测试名称。

另请参阅文档中的Test scopes in Scala部分:

Run tests