Monday, June 28, 2021

Anypoint Studio Error: The project is missing Munit lIbrary to run tests

Anypoint Studio 7.9 has a bug. Even if we following the article: https://help.mulesoft.com/s/article/The-project-is-missing-MUnit-libraries-to-run-tests-Mule-4, it still would not fix the proble. The only solution at the moment is to add the followiing dependency:
1
2
3
4
5
6
<dependency>
    <groupid>org.mule.weave</groupid>
    <artifactid>assertions</artifactid>
    <version>1.0.2</version>
    <scope>test</scope>
</dependency>

1 comment:

Anypoint Studio Error: The project is missing Munit lIbrary to run tests

Anypoint Studio 7.9 has a bug. Even if we following the article: https://help.mulesoft.com/s/article/The-project-is-missing-MUnit-libraries-...