使用Cypress.io在Maven项目中测试React

时间:2018-03-07 17:56:18

标签: reactjs maven testing frontend cypress

我目前正在开发一个项目,并希望使用赛普拉斯为我在React中制作的应用程序编写测试。然而,似乎Maven正在表演,并且经过很多Google-Fu之后,我陷入困境。我似乎缺少模块的一部分,但我无法找到什么样的。Here is an image of said failure.

我错过了什么?提前谢谢。

1 个答案:

答案 0 :(得分:1)

缺少包maven编译器插件报告在mozilla rhino jar中。尝试将以下依赖项添加到您的pom.xml

<dependency>
    <groupId>org.mozilla</groupId>
    <artifactId>rhino</artifactId>
    <version>1.7.8</version>
</dependency>