我有一个Maven项目,我不想改变POM,这样当我构建项目(Clean Install)时,在编译部分之后,将开始一组量角器测试(打开selenium并做几件事),并且只有当测试通过,构建本身通过.
我似乎找不到能给我这种功能的东西.有可能吗?如果是这样,我该如何使用它?
我们目前正在使用’com.github.eirslett’maven插件进行构建,我想知道是否可以将量角器测试添加为此插件中的一个阶段.我可以看到它支持使用’Karma’进行单元测试,但不支持与量角器相关的任何内容.
任何帮助都感激不尽!!谢谢 :)
您可以使用以下maven插件
https://github.com/greengerong/maven-ng-protractor
原文链接:https://www.f2er.com/angularjs/143685.html你可以像这样使用它
<plugin> <groupId>com.github.greengerong</groupId> <artifactId>maven-ng-protractor</artifactId> <version>0.0.2</version> <configuration> <protractor>protractor</protractor> <configFile>yourconfig.js</configFile> </configuration> <executions> <execution> <id>ng-protractor</id> <phase>integration-test</phase> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin>