“Test events were not received” when run tests using Intellij

前端 未结 13 2268
花落未央
花落未央 2021-02-06 21:11

I have a Kotlin project and when I run my JUnit tests, I can\'t see tests execution result in IntelliJ and get this message instead:

test events were not

13条回答
  •  离开以前
    2021-02-06 21:36

    The problem occurred as I used both following plugins at the same time

    plugins
    {
      id 'org.springframework.boot' version '2.2.6.RELEASE'
      id 'io.spring.dependency-management' version '1.0.7.RELEASE'
      ...
    }
    

    after deletion of the second one, the tests were found and executed.

提交回复
热议问题